当前位置:   article > 正文

python系列:FASTAPI系列12-Cookie值 & FASTAPI系列 13-header参数_python fastapi设置header

python fastapi设置header




一、 FASTAPI系列12-Cookie值

前言

可以像定义 QueryPath 参数一样来定义 Cookie 参数

一、定义Cookie参数

导入cookie参数

from fastapi import Cookie, FastAPI
  • 1

声明 Cookie 参数的结构与声明 Query 参数Path 参数时相同。
第一个值是参数的默认值,同时也可以传递所有验证参数或注释参数,来校验参数:

from fastapi import Cookie, FastAPI
from typing import Union
from fastapi import Cookie, FastAPI
from typing_extensions import Annotated

app = FastAPI()


@app.get("/users/")
async def get_user(user_id: Annotated[Union[str, None], Cookie()] = None):
    return {"ads_id": user_id}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11

在读取客户端中Cookie时需要注意,代码中cookie的变量名称必须和客户端cookie中的key值一致!!!

注意:CookiePathQuery是兄弟类,它们都继承自公共的 Param 类,但请记住,当你从 fastapi 导入的 QueryPathCookie 或其他参数声明函数,这些实际上是返回特殊类的函数。你需要使用 Cookie 来声明 cookie 参数,否则参数将会被解释为查询参数。

总结

使用 Cookie 声明 cookie 参数,使用方式与 QueryPath 类似。

二、 FASTAPI系列 13-header参数

前言

使用定义 Query, PathCookie 参数一样的方法定义 Header 参数。

一、声明 Header 参数

导入header

from fastapi import FastAPI, Header
  • 1

根据使用Cookie 一样的结构定义 header 参数,第一个值是默认值,你可以传递所有的额外验证或注释参数:

from typing import Union
from fastapi import FastAPI, Header
from typing_extensions import Annotated

app = FastAPI()


@app.get("/users/")
async def get_users(user_agent: Annotated[Union[str, None], Header()] = None):
    return {"User-Agent": user_agent}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10

HeaderPath, QueryCookie 的兄弟类型。它也继承自通用的 Param 类,但是请记得,当你从fastapi导入 Query, Path, Header, 或其他时,实际上导入的是返回特定类型的函数。

为了声明headers, 你需要使用Header, 因为否则参数将被解释为查询参数。

@app.get("/users")  
async def users(  
        user_agent: Union[str, None] = Header()  
):  
    print(f"user_agent : {user_agent}")  
    return {  
        "message": "Hello users!",  
        "data": {"user_agent": user_agent}  
    }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9

1

二、自动转换

HeaderPath, QueryCookie 提供的功能之上有一点额外的功能,通常在Python代码中那样使用 user_agent ,而不需要将首字母大写为 User_Agent 或类似的东西,如果出于某些原因,你需要禁用下划线到连字符的自动转换,设置Header的参数 convert_underscoresFalse:

from typing import Union
from fastapi import FastAPI, Header
from typing_extensions import Annotated

app = FastAPI()


@app.get("/users/")
async def get_users(
    strange_header: Annotated[
        Union[str, None], Header(convert_underscores=False)
    ] = None
):
    return {"strange_header": strange_header}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14

三、重复的 headers

有可能收到重复的headers。相同的header具有多个值,可以在类型声明中使用一个list来定义这些情况。通过一个Python list 的形式获得重复header的所有值,为了声明一个 X-Token header 可以出现多次,代码如下:

from typing import Union, List
from fastapi import FastAPI, Header
from typing_extensions import Annotated

app = FastAPI()


@app.get("/users/")
async def get_users(x_token: Annotated[Union[List[str], None], Header()] = None):
    return {"X-Token values": x_token}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10

如果http请求发送2个headers,像下面:

X-Token: Teacher Li 
X-Token: Teacher Q
  • 1
  • 2

则收到的结果如下:

{ "X-Token values": [ "Teacher Li ", "Teacher Q" ] }
  • 1

总结

Header 来声明 header , 使用和 Query, PathCookie 相同的模式,不用担心变量中的下划线,FastAPI 会负责转换它们。







lzq599220

FASTAPI系列12-Cookie值

FASTAPI系列 13-header参数

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/运维做开发/article/detail/839484
推荐阅读
相关标签
  

闽ICP备14008679号