中间件概念
前言
在Web开发中,通常需要一种机制处理请求前和响应后的一些钩子函数,通常把这类函数称为中间件。FastAPI的中间件是在应用程序处理HTTP请求和响应之前或之后执行功能的一个组件。中间件允许用户对HTTP请求进行重写、过滤、修改或添加信息,以及对HTTP响应进行修改或处理。
HTTP请求中间件
示例
from fastapi import Request
# 为每个HTTP请求计算请求响应耗时, 并在控制台输出
@app.middleware("http")
async def add_process_time(request: Request, call_next):
start_time = time.time()
resp = await call_next(request)
process_time = time.time() - start_time
print(f"url: {request.url}, process_time: {process_time:.4f}")
return resp