知识点
博客的文章随着时间会增加,现有博客首页、标签详情页、归档详情页面都会显示所有文章。虽然像文章归档,排行榜等可以通过切片实现,但是博文是不能通过切片这种方法实现的。
1 公共分页模板
翻页请求request.GET的方法 判断是否带了对应的参数【pagination.html】
<div id="pagination">
<ul id="pagination-flickr">
{% if article_list.has_previous %}
<li class="previous">
<a href="?page={{ article_list.previous_page_number }}{%if request.GET.year %}&year={{ request.GET.year }}{% endif %}{%if request.GET.month %}&month={{ request.GET.month }}{% endif %}{%if request.GET.tag %}&tag={{ request.GET.tag }}{% endif %}">«上一页</a>
</li>
{% else %}
<li class="previous-off">«上一页</li>
{% endif %}
<li class="active">{{ article_list.number }}/{{ article_list.paginator.num_pages }}</li>
{% if article_list.has_next %}
<li class="next">
<a href="?page={{ article_list.next_page_number }}{%if request.GET.year %}&year={{ request.GET.year }}{% endif %}{%if request.GET.month %}&month={{ request.GET.month }}{% endif %}{%if request.GET.tag %}&tag={{ request.GET.tag }}{% endif %}">下一页 »</a>
</li>
{% else %}
<li class="next-off">下一页 »</li>
{% endif %}
</ul>
</div>
2 需要插入分页模板的页面
将分页模板放到对应的html页面中,然后修改渲染该页面的视图函数
【index.html】
{% include 'pagination.html' %}
【archive.html】
{% include 'pagination.html' %}
【biaoqian.html】
{% include 'pagination.html' %}
3 视图函数
定义一个公共的分页函数,然后各个视图函数进行调用【views.py】
# 定义一个分页函数
def getPage(request, article_list):
paginator = Paginator(article_list, 3)
try:
page = int(request.GET.get('page', 1))
article_list = paginator.page(page)
except (InvalidPage, EmptyPage, PageNotAnInteger):
article_list = paginator.page(1)
return article_list
from django.core.paginator import InvalidPage, EmptyPage, PageNotAnInteger
def index(request):
article_list = getPage(request, Article.objects.all())
return render(request, 'index.html', locals())
def archive(request):
article_list = getPage(request, Article.objects.filter(date_publish__icontains=year + '-' + month))
return render(request, 'archive.html', locals())
def biaoqian(request):
article_list = getPage(request,tag_obj.article_set.all())
return render(request, 'biaoqian.html', locals())
4 访问测试
相关下载
欢迎留言,博文会持续更新~~