摘要: from rest_framework.pagination import PageNumberPagination, LimitOffsetPagination, CursorPagination class MyPagination(PageNumberPagination): # xxxx?p 阅读全文
posted @ 2019-08-22 15:41 你有我备注吗 阅读(138) 评论(0) 推荐(0)
摘要: DRF视图相关的类 from rest_framework import views from rest_framework import generics from rest_framework import mixins from rest_framework import viewsets 第 阅读全文
posted @ 2019-08-22 15:30 你有我备注吗 阅读(238) 评论(0) 推荐(0)
摘要: REST framework提供了两个router SimpleRouter DefaultRouter DefaultRouter与SimpleRouter的区别是,DefaultRouter会多附带一个默认的API根视图,返回一个包含所有列表视图的超链接响应数据。 example1: from 阅读全文
posted @ 2019-08-22 14:29 你有我备注吗 阅读(440) 评论(0) 推荐(0)