FastAPI开发文档教程-Cookie参数

admin 2026-01-10 10:52:53 编程 来源:ZONE.CI 全球网 0 阅读模式
  • 导入 Cookie
  • 声明 Cookie 参数
  • 小结

    定义 Cookie 参数与定义 QueryPath 参数一样。

    导入 Cookie

    首先,导入 Cookie

    Python 3.10+ Python 3.9+ Python 3.8+Python 3.10+ non-Annotated Python 3.8+ non-Annotated

    1. from typing import Annotated
    2. from fastapi import Cookie, FastAPI
    3. app = FastAPI()
    4. @app.get("/items/")
    5. async def read_items(ads_id: Annotated[str | None, Cookie()] = None):
    6. return {"ads_id": ads_id}
    1. from typing import Annotated, Union
    2. from fastapi import Cookie, FastAPI
    3. app = FastAPI()
    4. @app.get("/items/")
    5. async def read_items(ads_id: Annotated[Union[str, None], Cookie()] = None):
    6. return {"ads_id": ads_id}
    1. from typing import Union
    2. from fastapi import Cookie, FastAPI from typing_extensions import Annotated
    3. app = FastAPI()
    4. @app.get("/items/")
    5. async def read_items(ads_id: Annotated[Union[str, None], Cookie()] = None):
    6. return {"ads_id": ads_id}

    尽可能选择使用 Annotated 的版本。

    1. from fastapi import Cookie, FastAPI
    2. app = FastAPI()
    3. @app.get("/items/")
    4. async def read_items(ads_id: str | None = Cookie(default=None)):
    5. return {"ads_id": ads_id}

    尽可能选择使用 Annotated 的版本。

    1. from typing import Union
    2. from fastapi import Cookie, FastAPI
    3. app = FastAPI()
    4. @app.get("/items/")
    5. async def read_items(ads_id: Union[str, None] = Cookie(default=None)):
    6. return {"ads_id": ads_id}

    声明 Cookie 参数

    声明 Cookie 参数的方式与声明 QueryPath 参数相同。

    第一个值是默认值,还可以传递所有验证参数或注释参数:

    Python 3.10+Python 3.9+Python 3.8+Python 3.10+ non-AnnotatedPython 3.8+ non-Annotated

    1. from typing import Annotated
    2. from fastapi import Cookie, FastAPI
    3. app = FastAPI()
    4. @app.get("/items/")
    5. async def read_items(ads_id: Annotated[str | None, Cookie()] = None):
    6. return {"ads_id": ads_id}
    1. from typing import Annotated, Union
    2. from fastapi import Cookie, FastAPI
    3. app = FastAPI()
    4. @app.get("/items/")
    5. async def read_items(ads_id: Annotated[Union[str, None], Cookie()] = None):
    6. return {"ads_id": ads_id}
    1. from typing import Union
    2. from fastapi import Cookie, FastAPI
    3. from typing_extensions import Annotated
    4. app = FastAPI()
    5. @app.get("/items/")
    6. async def read_items(ads_id: Annotated[Union[str, None], Cookie()] = None):
    7. return {"ads_id": ads_id}

    尽可能选择使用 Annotated 的版本。

    1. from fastapi import Cookie, FastAPI
    2. app = FastAPI()
    3. @app.get("/items/")
    4. async def read_items(ads_id: str | None = Cookie(default=None)):
    5. return {"ads_id": ads_id}

    尽可能选择使用 Annotated 的版本。

    1. from typing import Union
    2. from fastapi import Cookie, FastAPI
    3. app = FastAPI()
    4. @app.get("/items/")
    5. async def read_items(ads_id: Union[str, None] = Cookie(default=None)):
    6. return {"ads_id": ads_id}

    技术细节

    CookiePathQuery兄弟类,都继承自共用的 Param 类。

    注意,从 fastapi 导入的 QueryPathCookie 等对象,实际上是返回特殊类的函数。

    说明

    必须使用 Cookie 声明 cookie 参数,否则该参数会被解释为查询参数。

    小结

    使用 Cookie 声明 cookie 参数的方式与 QueryPath 相同。

    FastAPI开发文档教程-额外数据类型 编程

    FastAPI开发文档教程-额外数据类型

    额外数据类型其他数据类型例子 FastAPI学习教程 - 用户指南 额外数据类型到目前为止,您一直在使用常见的数据类型,如:intfloatstrbool 但是您也可以使用更复杂的数据类型。 您仍然会
    评论:0   参与:  0