一.文档自动化管理 1.django rest framework提供了一个接口: 可以将代码中注释转换为文档中内容(list,create等),以及help_text等等,且会生成JavaScript,Python,Shell的测试脚本,也可以直接在该接口测试. from rest_framework.documentation import include_docs_urls ....... urlpatterns = [ # 配置drf文档 url('^docs/', include_do…