9.1.drf的api文档自动生成
mo_shop/urls.py
from django.urls import path, include
from rest_framework.documentation import include_docs_urls
urlpatterns = [
...
path('docs/', include_docs_urls(title='Mo shop')),
]
mo_shop/settings.py
REST_FRAMEWORK = {
...
'DEFAULT_SCHEMA_CLASS': 'rest_framework.schemas.AutoSchema',
}
Last updated
Was this helpful?