摘要: ```python from django.core.paginator import Paginator, EmptyPage class PaginatorSet: def __init__(self, limit=30): self._limit = limit def get(self, request, query_set): t... 阅读全文
posted @ 2018-01-23 16:22 水银_aquarius 阅读(110) 评论(0) 推荐(0) 编辑