Django class based view pagination

随声附和 提交于 2019-12-12 04:23:16

问题


Hi i want to paginating queryset(lectures). and i tried. but it doesn'work how can i do?

class tag_detail(View):
       def get(self, request, pk):

           tag_hit = get_object_or_404(TagModel, id=pk)
           tag_hit.view_cnt = tag_hit.view_cnt + 1
           tag_hit.save()

           tag = TagModel.objects.get(id=pk)
           lectures_data = LectureModel.objects.filter(tags__id=pk).order_by('-id')
           paginator = Paginator(lectures_data, 2)

           page = request.GET.get('page')

           try:
              lectures = paginator.page(page)
           except PageNotAnInteger:
              lectures = paginator.page(1)
           except EmptyPage:
              lectures = paginator.page(paginator.num_pages)

           return render(request, 'web/html/tag/tag_detail.html',{
                   'lectures':lectures
                   'tag':tag
           })

回答1:


Just make it a ListView and you won't have to worry about how it all works since paginate_by sets up pagination for you

class tag_detail(ListView):  # TagDetailListView would be a better name
    paginate_by = 2
    template_name = 'web/html/tag/tag_detail.html'
    model = LectureModel
    ordering = '-id'
    context_object_name = 'lectures'

    def  get_queryset(self):
        return LectureModel.objects.filter(tags__id=self.kwargs['pk'])


来源:https://stackoverflow.com/questions/41297273/django-class-based-view-pagination

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!