我正在尝试在我的网页中使用分页。所以我在 这里的 django 文档中找到了一个示例。
from django.core.paginator import Paginator, InvalidPage, EmptyPage
def listing(request):
contact_list = Contacts.objects.all()
paginator = Paginator(contact_list, 25) # Show 25 contacts per page
# Make sure page request is an int. If not, deliver first page.
try:
page = int(request.GET.get('page', '1'))
except ValueError:
page = 1
# If page request (9999) is out of range, deliver last page of results.
try:
contacts = paginator.page(page)
except (EmptyPage, InvalidPage):
contacts = paginator.page(paginator.num_pages)
return render_to_response('list.html', {"contacts": contacts})
示例中的问题是他一次加载所有项目以进行分页。但是在我的数据库中有20000
条目并且它们都不能一次加载。那么,有没有办法优化查询呢?