1. 外连接的理解
2. 外连接查询练习
3. 自连接查询的使用
4. 各自查询的联系和区别
5. 查询效率的影响
6. 以上查询的高级用法需要反复练习
7. 索引,触发器,视图的使用
8. MySQL数据库知识的热备份和冷备份
1.
的样式的问题 2. 用户注册时通常需要输入两次密码
pip install coreapi
from rest_framework.documentation import include_docs_urls
path('docs/', include_docs_urls(title='博客接口文档'))
REST_FRAMEWORK = {
# 默认认证类
# 'DEFAULT_AUTHENTICATION_CLASSES': (
# 'rest_framework_simplejwt.authentication.JWTAuthentication',
# )
'DEFAULT_SCHEMA_CLASS': 'rest_framework.schemas.coreapi.AutoSchema'
}
pip install django-rest-swagger
INSTALLED_APPS = [
...
'rest_framework_swagger'
]
如果要对接口文档中的方法进行注释说明,则直接在该类中添加注释即可,正如你所理解的那样。
# swagger
from rest_framework.schemas import get_schema_view
from rest_framework_swagger.renderers import SwaggerUIRenderer, OpenAPICodec
schema_view = get_schema_view(title='博客接口文档', renderer_classes=[SwaggerUIRenderer, OpenAPICodec])
urlpatterns = [
...
path('docs2/', schema_view, name='docs')
...
]