为了账号安全,请及时绑定邮箱和手机立即绑定

drf_yasg AttributeError:“function”对象没有属性“with_ui”

drf_yasg AttributeError:“function”对象没有属性“with_ui”

莫回无 2023-07-18 10:39:51
尝试根据他们的文档使用drf_yasg记录 API,但我收到此错误“AttributeError:‘function’对象没有属性‘with_ui’” 这是我在 urls.py中的代码schema_view = get_schema_view(    openapi.Info(        title="Blog API",        default_version='v1',        description="A sample API for learning DRF",        terms_of_service="https://www.google.com/policies/terms/",        contact=openapi.Contact(email="riajulkashem@gmail.com"),        license=openapi.License(name="BSD License"),    ),    public=True,    permission_classes=(permissions.AllowAny,),)urlpatterns = [    path('swagger/', schema_view.with_ui('swagger', cache_timeout=0), name='schema-swagger-ui'),    path('redoc/', schema_view.with_ui('redoc', cache_timeout=0), name='schema-redoc'),]
查看完整描述

1 回答

?
哈士奇WWW

TA贡献1799条经验 获得超6个赞

检查你正在导入的库,它是from drf_yasg.views import get_schema_view



查看完整回答
反对 回复 2023-07-18
  • 1 回答
  • 0 关注
  • 68 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信