当前位置:   article > 正文

fastapi(十一)-响应状态码_fastapi delete

fastapi delete

同样你也可以在以下路径操作中使用status_code参数来声明Http的status code

  • @app.get()
  • @app.post()
  • @app.put()
  • @app.delete()
    eg:
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和response_model一样是方法装饰器的参数,不是函数的参数。
这个status_code将会接收http的状态码
关于http 状态码
在http中将会发送3位数字作为响应的一部分。
数字信息:

  • 100 以及以上的数字代表“information”,很少直接使用到他们,当使用他们的时候响应中不能包含body
  • 200以及以上的数字代表“success",他们会经常被使用到,200是默认状态码,意味着所有的都ok,201是”created“经常用于在数据库中创建新纪录以后。204是特殊的,是”no content".当响应给client的body没有content的时候。
  • 300以及以上的数字代表“redirection”,
  • 400以及以上的数字代表“client error”,404,代表“not found”,一般的客户端错误可以直接使用400.
  • 500以及以上的数字代码“server error”,基本上不会用到。

fastapi中有方便的变量,fastapi.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
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/你好赵伟/article/detail/416478?site
推荐阅读
相关标签
  

闽ICP备14008679号