Home >Backend Development >PHP Tutorial >django分页后查询条件丢失

django分页后查询条件丢失

WBOY
WBOYOriginal
2016-06-02 11:33:191510browse

分页djangophphtmljsp

刚学习Django写了一个搜索的视图函数,想对搜索内容进行分页,现在有个问题,搜索内容提交后可以正常分页并显示第一页,选择第二个页时由于GET内容没传过去页面就显示不出来,请问哪个大神有好的解决办法 这是我的控件部分:查询部分

{% if results.has_previous %} {# 这里需要将原来的条件传递过来 #} previous {% endif %} Page{{results.number}} of {{results.paginator.num_pages}} {% if results.has_next %} next {% endif %}

网上有人说需要把查询条件放在 previous的&q={{}}中,但我不知道这里面放什么,希望朋友您能教一下,十分感谢

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn