Middleware(中间件)在 FastAPI 中是为每个请求和响应运行的代码——封装你的端点以处理日志、计时、CORS 和添加头等跨切面关注点。FastAPI 使用 Starlette 的中间件系统(基于 ASGI)。
编写自定义中间件
python
time
():
start = time.time()
response = call_next(request)
response.headers[] = (time.time() - start)
response
