如何在Django中创建分页? [英] How to create pagination in Django?

查看:274
本文介绍了如何在Django中创建分页?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我遵循djangoproject.com的这份文件: https://docs.djangoproject。 COM / EN / 1.8 /主题/分页/ 。但它太简单了只有下一个和上一个按钮。

I follow this Document of djangoproject.com : https://docs.djangoproject.com/en/1.8/topics/pagination/. But it is too simple. It is only Next and Previous button.

现在我想创建分页,具有更多的功能,如 http://i.imgur.com/ZiFeAqG.jpg

Now I want create pagination with more features such as http://i.imgur.com/ZiFeAqG.jpg.

这是代码:

View.py

def hire(request):

hire_article_list = hire_article.objects.all().order_by('-id')
#hire_article_list = hire_article.objects.order_by("-publication_date")

paginator = Paginator(hire_article_list, 2) # Show 25 contacts per page

page = request.GET.get('page')
try:
    hire_article_s = paginator.page(page)

except PageNotAnInteger:
    # If page is not an integer, deliver first page.
    hire_article_s = paginator.page(1)
except EmptyPage:
    # If page is out of range (e.g. 9999), deliver last page of results.

    hire_article_s = paginator.page(paginator.num_pages)

#return render_to_response('hire/list.html', {"page_list": page_list})
context = {'hire_article_s': hire_article_s}
return render(request, 'hire/list.html', context)

list.html

list.html

{% for j in hire_article_s %}
    {# Each "j" is a page_list  model object. #}
    <li><a href="/hire/{{ j.slug }}-{{j.id}}">{{ j.hiring}}</a></li>
{% endfor %}


                {% if hire_article_s.has_previous %}
                    <a href="?page={{ hire_article_s.previous_page_number }}">previous</a>
                {% endif %}

                <span class="current">
                    Page {{ hire_article_s.number }} of {{ hire_article_s.paginator.num_pages }}.
                </span>

                {% if hire_article_s.has_next %}
                    <a href="?page={{ hire_article_s.next_page_number }}">next</a>
                {% endif %}

        </span>
</div>


推荐答案

上周我也有类似的需求,发现这个超级有用的要点( https://gist.github.com/jsatt/8183993 )工作正常虽然我不知道为什么它不会工作,直到我在功能参数中的请求)。它是django的Paginator函数的子类。你可以将它放在一个实用程序文件中,并且每当你想要使用范围分页符号时调用它。

I had a similar need last week and found this super useful gist (https://gist.github.com/jsatt/8183993) that worked fine (though I'm not sure why it wouldn't work till I put request in the function parameters). It's a subclass of django's Paginator function. You could put this in a utility file and call it whenever you want to use Paginate with the range.

例如,我有一个名为utils.py的文件,这是我的核心应用程序。

For instance, I had mine in a file called utils.py, which is in my core app.

views.py

from core.utils import paginate

def hire(request):

    hire_article_list = hire_article.objects.all().order_by('-id')
    '''
    Show 25 contacts per page, with a page range of 5, which means if you are
    on page 8, it shows links to pages 6,7,8,9,10.
    '''
    hire_article_s = paginate(request, hire_article_list, 25, 5) 

    context = {'hire_article_s': hire_article_s}
    return render(request, 'hire/list.html', context)

list.html p>

list.html

{% if hire_article_s.has_previous %}
     <a href="?page={{ hire_article_s.previous_page_number }}">previous</a>
{% endif %}

{% for range in hire_article_s.neighbor_range %}
    {% if range == hire_article_s.number %}
       <li class="pagination__item active ">{{ range }}</li>
    {% else %}
       <li class="{% if range == hire_article_s.number %}active {% endif %}"><a href="?page={{ range }}">{{ range }}</a></li>
    {% endif %}
{% endfor %} 

{% if hire_article_s.has_next %}
    <a href="?page={{ hire_article_s.next_page_number }}">next</a>
{% endif %}

希望这有帮助。

更新

上面的代码已经被修改了一下。我添加了上下文和模板格式。请注意,我正在使用循环来执行 {{hire_article_s.neighbor_range}} 并打印出页码。我也做一个检查来突出显示当前页面的数字。这应该工作,因为它几乎是我自己的代码与你自己的变量名。

The above code has been edited a bit. I've added the context and the template format. Note that I'm using a loop to go through {{ hire_article_s.neighbor_range }} and print out the page numbers. I also do a check to highlight the current page's number. the This should work, as it's pretty much my own code with your own variable names.

这篇关于如何在Django中创建分页?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆