赞
踩
StatusCode响应状态码,可用在GET/POST/PUT/DELETE方法中。
from fastapi import FastAPI
app = FastAPI()
@app.post("/items/", status_code=201)
async def create_item(name: str):
return {"name": name}
其中,status_code既可以为数字1**/2**/3**/4**/5**,也可以通过导入status枚举
from fastapi import FastAPI, status
app = FastAPI()
@app.post("/items/", status_code=status.HTTP_201_CREATED)
async def create_item(name: str):
return {"name": name}
1** 信息,服务器收到请求,需要请求者继续执行操作
2** 成功,操作被成功接收并处理
3** 重定向,需要进一步的操作以完成请求
4** 客户端错误,请求包含语法错误或无法完成请求
5** 服务器错误,服务器在处理请求的过程中发生了错误
https://www.runoob.com/http/http-status-codes.html
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。