在 FastAPI 中处理 HTTP 请求和响应通常会使用路径操作函数。路径操作函数是用来定义 API 的路由和处理请求的函数。您可以通过使用 FastAPI 提供的装饰器来定义路径操作函数。
以下是一个简单的例子,展示了如何使用 FastAPI 处理 HTTP 请求和响应:
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
async def read_root():
return {"message": "Hello, World"}
@app.get("/items/{item_id}")
async def read_item(item_id: int):
return {"item_id": item_id}
在上面的示例中,我们定义了两个路径操作函数。read_root
函数处理根路径的 GET 请求,并返回一个包含消息 “Hello, World” 的 JSON 对象。read_item
函数处理带有参数 item_id
的 GET 请求,并返回一个包含 item_id
的 JSON 对象。
您可以通过运行 FastAPI 应用程序并访问对应的路径来测试这些路径操作函数。FastAPI 还提供了很多其他功能,例如请求验证、响应模型、文档生成等,使得处理 HTTP 请求和响应更加方便和高效。