gpt4 book ai didi

python - FastAPI - 如何在响应中使用 HTTPException?

转载 作者:行者123 更新时间:2023-12-04 12:05:19 29 4
gpt4 key购买 nike

该文档建议引发带有客户端错误的 HTTPException,这很好。
但是如何在文档中遵循 HTTPException 的模型显示这些特定错误?意思是带有“详细信息”键的字典。
以下不起作用,因为 HTTPException 不是 Pydantic 模型。

@app.get(
'/test',
responses={
409 : {
'model' : HTTPException,
'description': 'This endpoint always raises an error'
}
}
)
def raises_error():
raise HTTPException(409, detail='Error raised')

最佳答案

是的,它不是有效的 Pydantic 类型,但是由于您可以创建自己的模型,因此很容易为其创建模型。

from fastapi import FastAPI
from fastapi.exceptions import HTTPException
from pydantic import BaseModel


class Dummy(BaseModel):
name: str


class HTTPError(BaseModel):
detail: str

class Config:
schema_extra = {
"example": {"detail": "HTTPException raised."},
}


app = FastAPI()


@app.get(
"/test",
responses={
200: {"model": Dummy},
409: {
"model": HTTPError,
"description": "This endpoint always raises an error",
},
},
)
def raises_error():
raise HTTPException(409, detail="Error raised")
我相信这就是你所期待的
enter image description here

关于python - FastAPI - 如何在响应中使用 HTTPException?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64501193/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com