我正在使用 ListView 显示所有 NewPersons 并按 5 个结果分页。NewPersons 显示在表格中,左侧有一个搜索框。在 GET 中请求搜索“q”时。为了在搜索时更改查询集,我重写了视图的 get_queryset 方法。
我遇到的问题是,如果搜索返回的结果超过 5 个,我将按 5 个结果分页,因此它们被分页;但是,如果您单击“下一步”查看第二页,则会返回完整对象列表的第二页,而不是搜索结果的第二页。
所以我想知道如何正确分页我的搜索结果。谢谢。京东
class PersonListView(ListView):
model = NewPerson
template_name = 'list.html'
paginate_by = 5
def get_queryset(self):
"""
Get the list of items for this view. This must be an interable, and may
be a queryset (in which qs-specific behavior will be enabled).
"""
if 'q' in self.request.GET:
q = self.request.GET['q']
queryset = NewPerson.objects.filter(Q(FirstName__icontains=q) | Q(LastName__icontains=q))
else:
if self.queryset is not None:
queryset = self.queryset
if hasattr(queryset, '_clone'):
queryset = queryset._clone()
elif self.model is not None:
queryset = self.model._default_manager.all()
else:
raise ImproperlyConfigured(u"'%s' must define 'queryset' or 'model'"
% self.__class__.__name__)
return queryset