摘要: drf三大认证(认证,权限,频率)与过滤排序,分页 drf 认证组件 登录接口 views from rest_framework.viewsets import ViewSet from rest_framework.decorators import action from .models im 阅读全文
posted @ 2023-02-06 20:33 李阿鸡 阅读(31) 评论(0) 推荐(0) 编辑
摘要: drf路由系统 由于继承了ViewSetMinxin类 路由的写法变了,有三种写法。需要学习一下 原生写法 path('books/',views.BookView.as_view()) 继承ViewSetMinxin重写as_view后的写法 path('books/',views.BookVie 阅读全文
posted @ 2023-02-06 20:32 李阿鸡 阅读(44) 评论(0) 推荐(0) 编辑
Title