在FastAPI
中,Headers
是一个特殊的类型,用于处理HTTP请求头(Headers
)。Headers
允许你接收、访问和修改HTTP请求中的头部信息。
使用Headers
,你可以在FastAPI
的路由视图中将请求头作为参数接收,并对它们进行操作
Headers
你可以使用定义Query
、Path
一样的方式来定义Header
参数。使用如下:
python
from fastapi import Header
@router.get("/home")
async def home(authorization: str = Header()):
return {'code': 1}
也可以这样定义:
python
from fastapi import Header
from typing import Annotated
@router.get("/home")
async def home(authorization: Annotated[str, Header()]):
return {'code': 1}
当然,像Query
、Path
和Body
等都可以使用Annotated
这样来声明。
在Swagger UI中效果如下:
这样就表示该请求需要接收一个authorization
标头,否则将会引发422错误,如下:
json
{
"detail": [
{
"type": "missing",
"loc": [
"header",
"authorization"
],
"msg": "Field required",
"input": null,
"url": "https://errors.pydantic.dev/2.0.3/v/missing"
}
]
}
大多数标准的Headers
用"连字符"分隔,也称为"减号"(-
)。但是像user-agent
这样的变量在Python中是无效的。因此, 默认情况下, Header
将把参数名称的字符从下划线(_)转换为连字符(-)来提取并记录headers
.
同时,HTTP headers 是大小写不敏感的,因此,因此可以使用标准Python样式(也称为 "snake_case")声明它们。因此,您可以像通常在Python代码中那样使用 user_agent
,而不需要将首字母大写为User_Agent
或类似的东西。如果出于某些原因,你需要禁用下划线到连字符的自动转换,设置Header
的参数 convert_underscores
为 False
:
python
@router.get("/home")
async def home(sp_name: str = Header(convert_underscores=False)):
return {'code': 1}
Headers
常见参数如下:
default
: 默认值,任何类型。 当设置了该值,表明该参数非必须参数default_factory
: 生成的默认值的函数,接收一个Callable
类型。default
与default_factory
不可同时存在alias
: 别名,str
类型title
: Swagger UI中参数的标题,str
类型。Path
/Query
操作不起作用description
: Swagger UI中参数的描述,str
类型convert_underscores
: 是否将连字符转化为下划线,接收一个bool
类型,默认为True
gt
: 大于,数字类型ge
: 大于或等于,数字类型lt
: 小于,数字类型le
: 小于或等于,数字类型multiple_of
: 接收一个数字类型,表示为几的倍数。例如multiple_of
的值为2,那么该字段的值必须是2的倍数allow_inf_nan
:bool
类型,表示是否允许字段为NaN或无穷大(+inf或-inf)。默认为True,为与JSON兼容请设置为False。max_digits
:int类型
,表示最大位数,字段类型须设置为decimal.Decimal
类型。长度计算中不包括小数点前的零或小数点后的零decimal_places
:int类型
,表小数最大位数,字段类型须设置为decimal.Decimal
类型。长度计算中不包括小数点前的零或小数点后的零min_length
: 最小长度,int
类型max_length
: 最大长度,int
类型regex
: 正则匹配,str
类型example
: Swagger UI中参数的示例值,任何类型examples
: Swagger UI中参数的示例值,Dict类型。Path
/Query
操作不起作用deprecated
: 是否过期,bool
类型,默认Falseinclude_in_schema
: Swagger UI中是否添加对参数的说明,bool
类型,默认True
Cookies
在FastAPI
中,Cookies
是一个特殊的类型,用于处理HTTP请求中的Cookie
数据。Cookies
允许你接收、访问和修改HTTP请求中的Cookie
信息。使用Cookies
,你可以在FastAPI
的路由视图中将Cookie
数据作为参数接收,并对其进行操作。
同样,Cookies
也可以像定义Query
、Path
一样的方式来定义Cookies
参数。使用如下:
python
from fastapi import Cookie
@router.get("/home")
async def home(sp_name: str = Cookie()):
return {'code': 1}
在Swagger UI中效果如下:
这样就表示该请求需要接收一个sp_name
Cookie,否则将会引发422错误,如下:
json
{
"detail": [
{
"type": "missing",
"loc": [
"cookie",
"sp_name"
],
"msg": "Field required",
"input": null,
"url": "https://errors.pydantic.dev/2.0.3/v/missing"
}
]
}
Cookie
接收的参数与Header
基本相同,这里不做介绍