按照本教程,我一直在尝试为我的烧瓶应用添加分页:http://flask.pocoo.org/snippets/44/。
现在似乎正在运作,因为我可以通过转到:http://localhost:5000/page/x手动访问每个页面上的分隔项目。
但我似乎无法让jinja2像链接一样呈现链接。
views.py
POSTS_PER_PAGE = 3
@app.route('/', defaults={'page': 1})
@app.route('/page/<int:page>')
def homepage(page):
todayDate = datetime.utcnow()
yesterdayDate = datetime.utcnow() - timedelta(days=1)
count = Post.query.count()
posts = Post.query.order_by(Post.posted_on.desc()).paginate(page,POSTS_PER_PAGE, count).items
by_date = it.groupby(posts, key=lambda p:p.posted_on)
pagination = Pagination(page, POSTS_PER_PAGE, count)
return render_template('index2.html',
by_date=by_date,
todayDate=todayDate,
yesterdayDate=yesterdayDate,
pagination=pagination)
index2.html
{% block content %}
.. content here ..
{% macro render_pagination(pagination) %}
<div class=pagination>
{%- for page in pagination.iter_pages() %}
{% if page %}
{% if page != pagination.page %}
<a href="{{ url_for_other_page(page) }}">{{ page }}</a>
{% else %}
<strong>{{ page }}</strong>
{% endif %}
{% else %}
<span class=ellipsis>…</span>
{% endif %}
{%- endfor %}
{% if pagination.has_next %}
<a href="{{ url_for_other_page(pagination.page + 1)
}}">Next »</a>
{% endif %}
</div>
{% endmacro %}
{% endblock %}
我的查询有什么问题吗?
答案 0 :(得分:1)
render_pagination
是macro,是可重复使用的代码块(函数),可供许多模板使用。您通常希望在单独的模板文件中定义它们(如果您有许多文件,则可以定义文件)。
# macros.html
{% macro render_pagination(pagination) %}
<div class=pagination>
{%- for page in pagination.iter_pages() %}
{% if page %}
{% if page != pagination.page %}
<a href="{{ url_for_other_page(page) }}">{{ page }}</a>
{% else %}
<strong>{{ page }}</strong>
{% endif %}
{% else %}
<span class=ellipsis>…</span>
{% endif %}
{%- endfor %}
{% if pagination.has_next %}
<a href="{{ url_for_other_page(pagination.page + 1)
}}">Next »</a>
{% endif %}
</div>
{% endmacro %}
然后,在您的模板中,您可以导入并使用宏。
# index2.html
{% from macros import render_pagination %}
{% block content %}
... content here ...
{{ render_pagination(pagination) }}
{% endblock %}