Django-分页

Django-分页

1.创建对象

Paginator 对象的 page()方法返回 Page 对象,不需要手动构造

2.属性

object_list:当前页上所有对象的列表
number:当前页的序号,从 1 开始
paginator:当前 page 对象相关的 Paginator 对象

3.方法

has_next():如果有下一页返回 True
has_previous():如果有上一页返回 True
has_other_pages():如果有上一页或下一页返回 True
next_page_number():返回下一页的页码,如果下一页不存在,抛出 InvalidPage 异常
previous_page_number():返回上一页的页码,如果上一页不存在,抛出InvalidPage异常
len():返回当前页面对象的个数
迭代页面对象:访问当前页面中的每个对象

4.示例

views
def view_post(request,pIndex):
    # try:
    uadmin = request.session['uadmin']
    authorid = adminid.objects.get(admin = uadmin)
    authorlist = post.objects.filter(author = authorid)
    p = Paginator(authorlist, 1)
    print(authorlist)
    if pIndex == '':
        pIndex = int(pIndex)
    list = p.page(pIndex)
    plist = p.page_range
    # print('hobby', shrlist[0].shrname)
    # hero = HeroInfo.objects.get
    return render(request, 'invitation/view_post.html', {'request':request, 'authorlist': list,'plist':plist,'pIndex':pIndex})
    # except Exception as e:
    #   return redirect(reverse('login:login'))
html
    {% for item in authorlist%}
  • 标题:{{ item.title }}
  • 类型:{{ item.classify }}
  • 内容~~~
  • {%autoescape off%} {%endautoescape%}
  • 发帖时间:{{ item.posted_time }}
  • {% endfor %} {% if authorlist.has_previous %} 上一页   {% else %} 上一页 {% endif %} {% for pindex in plist %} {% if pindex == pIndex %} {{ pindex }} {% else %} {{ pindex }}   {% endif %} {% endfor %} {% if authorlist.has_next %} 下一页   {% else %} 下一页 {% endif %}
应用url

url(r'^view_post/(\d+)/$',views.view_post,name='view_post'),

你可能感兴趣的:(Django-分页)