亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

FastAPI中怎么實現跨源資源共享

小億
94
2024-05-10 16:40:57
欄目: 編程語言

要在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_credentialsTrue,表示允許發送憑據(例如cookies)。

通過上述步驟,在FastAPI應用程序中就啟用了CORS功能,允許跨源資源共享。

0
秭归县| 拉萨市| 库车县| 昌宁县| 田林县| 平和县| 宜兴市| 科技| 凤翔县| 铜鼓县| 天镇县| 洪江市| 滦南县| 德庆县| 延安市| 大庆市| 泸水县| 阿坝| 朝阳市| 寻甸| 元氏县| 兰溪市| 化德县| 金湖县| 双城市| 太原市| 历史| 芦山县| 桂阳县| 原阳县| 洪泽县| 和硕县| 宜都市| 房产| 巴楚县| 夏邑县| 泉州市| 泰兴市| 英德市| 林州市| 泰来县|