-
Notifications
You must be signed in to change notification settings - Fork 66
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
swagger-doc #6
Comments
这样修改你会发现前端无法正常获取静态文件,这是fastapi目前存在的一个bug,已有相关的pr,待合并后应该就正常了 |
看到你提的了,fastapi/fastapi#11622 感觉fastapi的release节奏变慢了,这个好像没下文了 |
在app.py中去掉root_path配置,在server.py中新增配置
|
这样写前端的系统接口菜单就失效了 |
|
明白了,这里指的是 OpenAPI 的接口会失效 |
我再次尝试了一下,backend 修改如 @buptzyf 这个老哥写一样,把root_path=AppConfig.app_root_path 配置从app.py改到server.py来,然后修改 frontend 的 vite 的 proxy 配置,不要 rewrite 配置就行:
这样无论是前端接口及静态资源,又或是openapi文档和接口都能正常访问了 |
感谢贡献解决方案,但从项目本身来说我还是倾向于保留rewrite依然可以正常使用的写法,对于nginx也是如此。在底层bug未解决之前,我会一直保留这个issue,以给需要的人提供解决方法。 |
我又来了,重开了个issue
默认启动方式下,localhost:9099/docs打不开swagger页面
然后app.py中修改为:
server.py中修改为:
初始化FastAPI对象
就可正常打开了,这样改是否合理(hhh来自一个前java程序员
The text was updated successfully, but these errors were encountered: