8. fastApi请求错误处理方式与示例

请求错误处理

某些情况下,需要向客户端返回错误提示。

需要向客户端返回错误提示的场景主要如下:

  • 客户端没有执行操作的权限
  • 客户端没有访问资源的权限
  • 客户端要访问的项目不存在
  • 服务器内部错误

遇到这些情况时,通常要返回 4XX(400 至 499)HTTP 状态码

4XX 状态码与表示请求成功的 2XX(200 至 299) HTTP 状态码类似。

只不过,4XX 状态码表示客户端发生的错误。如【404访问的资源不存在】

404错误处理

如在调用路径操作函数里的工具函数时,触发了 HTTPException,FastAPI 就不再继续执行路径操作函数中的后续代码,而是立即终止请求,并把 HTTPException 的 HTTP 错误发送至客户端。

from fastapi import FastAPI, HTTPException

app = FastAPI()

items = {"foo": "The Foo Wrestlers"}


@app.get("/items/{item_id}")
async def read_item(item_id: str):
    if item_id not in items:
        raise HTTPException(status_code=404, detail="访问的资源不存在咯")
    return {"item": items[item_id]}


添加自定义响应头

有些场景下要为 HTTP 错误添加自定义响应头。在某些方面的出于安全需要。

@app.get("/items-header/{item_id}")
async def read_item_header(item_id: str):
    if item_id not in items:
        raise HTTPException(
            status_code=404,
            detail="Item not found",
            headers={"X-Error": "There goes my error"},
        )
    return {"item": items[item_id]}

错误情况下的响应头
在这里插入图片描述

FastAPI 中,你可以使用中间件来实现统一的错误处理。下面是一个示例: ```python from fastapi import FastAPI from fastapi.middleware.cors import CORSMiddleware from fastapi.exceptions import RequestValidationError from starlette.exceptions import HTTPException as StarletteHTTPException from starlette.responses import JSONResponse app = FastAPI() # 添加跨域中间件 app.add_middleware( CORSMiddleware, allow_origins=["*"], allow_methods=["*"], allow_headers=["*"], ) # 自定义异常处理中间件 @app.exception_handler(RequestValidationError) async def validation_exception_handler(request, exc): return JSONResponse( status_code=400, content={"detail": "Validation error"} ) @app.exception_handler(StarletteHTTPException) async def http_exception_handler(request, exc): return JSONResponse( status_code=exc.status_code, content={"detail": str(exc)} ) @app.get("/items/{item_id}") async def read_item(item_id: int): if item_id == 42: raise StarletteHTTPException(status_code=403, detail="Item forbidden") return {"item_id": item_id} ``` 在上面的示例中,我们添加了一个跨域中间件 `CORSMiddleware`,它允许跨域请求。然后,我们定义了两个异常处理器函数:`validation_exception_handler` 和 `http_exception_handler`。 `validation_exception_handler` 处理 `RequestValidationError` 类型的异常,而 `http_exception_handler` 处理 `StarletteHTTPException` 类型的异常。 这些异常处理器函数会被自动调用,当抛出相应的异常时,它们会返回自定义的 JSON 响应,以提供有关错误的详细信息。 请注意,此示例仅用于演示目的。在实际使用时,你可能需要根据具体需求进行定制和优化。另外,你还可以添加其他中间件来处理日志记录、身份验证等任务。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

Jesse_Kyrie

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值