gpt4 book ai didi

python - 如何用jinja2获取for循环的当前索引?

转载 作者:太空宇宙 更新时间:2023-11-03 13:40:59 40 4
gpt4 key购买 nike

假设我有这样的代码:

{% for x in posts %}
<p>We are in item: {{ x }}</>
{% else %}

我想获取 for 循环的当前索引以运行 if 循环,类似于(逻辑上):

{% for x in posts %}
{% if x.index = 0 %}
<p>We are in the first item!</p>
{% else %}
<p>We are in item: {{ x }}</>
{% endif %}
{% endfor %}

如何在 jijna2 中执行? (我将 Python 与 Flask 结合使用)。

最佳答案

您可以在循环内使用loop.index

{% for x in posts %}
<p>We are in item number: {{ loop.index }}</>
{% else %}

Flask Template docs

关于python - 如何用jinja2获取for循环的当前索引?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31087331/

40 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com