FastAPI交互文档不显示的问题

FastAPI交互文档不显示的问题

当安装好fastapi,使用交互文档时,默认的页面静态文件是从CDN获取,就会有打开速度慢或者打不开的问题,通过以下三步修改。

1.下载需要的静态文件,将static目录保存到项目的根目录。

链接: https://pan.baidu.com/s/17prz4sd3FSWKVlUbqxG-UQ?pwd=evct 提取码: evct 复制这段内容后打开百度网盘手机App,操作更方便哦

2.修改当前使用的fastapi包。

打开Python包安装目录,Lib/site-packages,找到要修改的文件,fastapi/openapi/docs.py,修改以下两处。

# Lib/site-packages/fastapi/openapi/docs.py
def get_swagger_ui_html(
    *,
    openapi_url: str,
    title: str,
    swagger_js_url: str = "/static/swagger-ui/swagger-ui-bundle.js",
    swagger_css_url: str = "/static/swagger-ui/swagger-ui.css",
    swagger_favicon_url: str = "/static/swagger-ui/favicon-32x32.png",
    oauth2_redirect_url: Optional[str] = None,
    init_oauth: Optional[Dict[str, Any]] = None,
    swagger_ui_parameters: Optional[Dict[str, Any]] = None,
) -> HTMLResponse:
    ...
def get_redoc_html(
    *,
    openapi_url: str,
    title: str,
    redoc_js_url: str = "/static/redoc/bundles/redoc.standalone.js",
    redoc_favicon_url: str = "/static/redoc/favicon.png",
    with_google_fonts: bool = True,
) -> HTMLResponse:
    ...

3.在应用中挂载static。

from starlette.staticfiles import StaticFiles
app=FastAPI()
app.mount('/static',StaticFiles(directory='static'),name='static')

通过上面三步,重新启动应用,再次打开交互文档,静态文件就会从本地加载。

总结,新下载的fastapi包需要修改静态文件地址,应用中挂载静态文件目录。

你可能感兴趣的:(python,fastapi,python,前端)