要在FastAPI中实现跨源资源共享(CORS),可以使用FastAPI提供的CorsMiddleware中间件。以下是一个简单的示例:
from fastapi import FastAPI
from fastapi.middleware.cors import CORSMiddleware
app = FastAPI()
# 允许所有来源的请求
app.add_middleware(
CORSMiddleware,
allow_origins=["*"],
allow_credentials=True,
allow_methods=["*"],
allow_headers=["*"],
)
@app.get("/")
async def read_root():
return {"message": "Hello, World"}
在上面的示例中,我们使用add_middleware
方法添加了CorsMiddleware中间件。我们设置了allow_origins
为["*"]
,表示允许所有来源的请求。同时设置了allow_credentials
为True
,表示允许发送凭据(例如cookies)。
通过上述步骤,在FastAPI应用程序中就启用了CORS功能,允许跨源资源共享。