解决FastAPI,docs打不开
解决 http://127.0.0.1:8000/docs#/default js或者css找不到类似问题
使用第三方库自动替换:安装 fastapi-cdn-host 库,它可以帮助自动替换为国内可用的 CDN
pip install fastapi-cdn-host
import fastapi_cdn_host
app = FastAPI()
fastapi_cdn_host.patch_docs(app)
解决 http://127.0.0.1:8000/docs#/default js或者css找不到类似问题
使用第三方库自动替换:安装 fastapi-cdn-host 库,它可以帮助自动替换为国内可用的 CDN
pip install fastapi-cdn-host
import fastapi_cdn_host
app = FastAPI()
fastapi_cdn_host.patch_docs(app)