我需要进行真正的分页,而不是对所有检索到的数据进行分页。Django 文档站点中的示例是这样的;
def listing(request):
contact_list = Contacts.objects.all()
paginator = Paginator(contact_list, 25) # Show 25 contacts per page
page = request.GET.get('page')
try:
contacts = paginator.page(page)
except PageNotAnInteger:
# If page is not an integer, deliver first page.
contacts = paginator.page(1)
except EmptyPage:
# If page is out of range (e.g. 9999), deliver last page of results.
contacts = paginator.page(paginator.num_pages)
return render_to_response('list.html', {"contacts": contacts})
此代码正在对所有检索到的记录进行分页记录。但是有一个麻烦。如果有这么多记录,尝试检索所有记录需要很长时间。我需要一个解决方案来从数据库中逐页检索记录。
在 Django 中有另一种解决方案吗?