django的一些文件
~~~settings.py~~~
# 接口文档相关配置
REST_FRAMEWORK={
'DEFAULT_SCHEMA_CLASS': 'rest_framework.schemas.coreapi.AutoSchema',
}
~~~urls.py~~~
from rest_framework.documentation import include_docs_urls
# 模块coreapi,只针对drf的接口文档
path('api-docs/', include_docs_urls(title='系统监控-API接口文档')),
~~~models.py~~~
# 在对应的数据属性后面加上:
help_text='CPU使用率'
可以在接口文档页面提示,也可在序列化器模型上加
~~~views.py~~~
# 在每个类的里面直接加注释,就可以反馈到页面上
'''独立视图集,测试操作所有数据'''