当前位置:   article > 正文

FastAPI学习-StatusCode响应状态码_fastapi status

fastapi status

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}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8

其中,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
  • 6
  • 7
  • 8

完整的http代码含义

1** 信息,服务器收到请求,需要请求者继续执行操作

2** 成功,操作被成功接收并处理

3** 重定向,需要进一步的操作以完成请求

4** 客户端错误,请求包含语法错误或无法完成请求

5** 服务器错误,服务器在处理请求的过程中发生了错误

https://www.runoob.com/http/http-status-codes.html

参考资料

  1. FastAPI官网 :https://fastapi.tiangolo.com/
  2. FastAPI源码 :https://github.com/tiangolo/fastapi
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小小林熬夜学编程/article/detail/416480
推荐阅读
相关标签
  

闽ICP备14008679号