django執行數據庫查詢以後返回分頁的結果

分頁: page = int(page) + 1 try: res = models.tables.objects.all().order_by('-id') paginator = Paginator(res, page_size) # 生成分頁實例 dic['totalCount'] = paginator.count # 獲取數據總條數 try:
相關文章
相關標籤/搜索