django分页处理
关于Django的分页处理
后端逻辑操作是这样的:
# -*- coding: utf-8 -*-
from django.shortcuts import render_to_response
from django.core.paginator import Paginator, EmptyPage, PageNotAnInteger
from man.models import Man
def home(request):
if request.user.is_authenticated():
user = request.user;
else:
user = request.user;
items_mans = Man.objects.filter(is_show=0).order_by('-create_date').all()
paginator_man = Paginator(items_mans,8)
page = request.GET.get('page',1)
try:
items_man = paginator_man.page(page)
except PageNotAnInteger:
items_man = paginator_man.page(1)
except EmptyPage:
items_man = paginator_man.page(paginator_man.num_pages)
return render_to_response('man/home.html',{
'action':'man',
'items_man':items_man,
'user':user
})
前端的页面处理是这样的
<div class="row-fluid">
<div class="span12">
<div class="pagination pagination-centered">
<ul>
{% if items_man.has_previous %}
<li>
<a href="?page={{ items_man.previous_page_number }}">上一页</a>
</li>
{% endif %}
<li class='disabled'>
<a class="">
{{ items_man.number }} / {{ items_man.paginator.num_pages }}
</a>
</li>
{% if items_man.has_next %}
<li>
<a href="?page={{ items_man.next_page_number }}">下一页</a>
</li>
{% endif %}
</ul>
</div>
</div>
</div>
版权声明
由 davidzhang创作并维护的 Gowhich博客采用创作共用保留署名-非商业-禁止演绎4.0国际许可证。
本文首发于 博客( https://www.gowhich.com ),版权所有,侵权必究。
本文永久链接: https://www.gowhich.com/blog/344
版权声明
由 davidzhang创作并维护的 Gowhich博客采用创作共用保留署名-非商业-禁止演绎4.0国际许可证。
本文首发于 Gowhich博客( https://www.gowhich.com ),版权所有,侵权必究。
本文永久链接: https://www.gowhich.com/blog/344