You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
424 B
14 lines
424 B
3 years ago
|
#!/usr/bin/env python
|
||
|
# -*- coding:utf-8 -*-
|
||
|
# project: 1月
|
||
|
# author: NinEveN
|
||
|
# date: 2022/1/6
|
||
|
from rest_framework.pagination import PageNumberPagination
|
||
|
|
||
|
|
||
|
class AppsPageNumber(PageNumberPagination):
|
||
|
page_size = 20 # 每页显示多少条
|
||
|
page_size_query_param = 'limit' # URL中每页显示条数的参数
|
||
|
page_query_param = 'page' # URL中页码的参数
|
||
|
max_page_size = None # 最大页码数限制
|