我的 django 模板中有以下 for 循环显示天数。我想知道,是否可以在循环中迭代一个数字(在下面的情况下为 i)。还是我必须将其存储在数据库中,然后以days.day_number的形式查询?
{% for days in days_list %} <h2># Day {{ i }} - From {{ days.from_location }} to {{ days.to_location }}</h2> {% endfor %}
Django 提供了它。您可以使用:
{{ forloop.counter }}
{{ forloop.counter0 }}
在模板中,您可以执行以下操作:
{% for item in item_list %} {{ forloop.counter }} # starting index 1 {{ forloop.counter0 }} # starting index 0 # do your stuff {% endfor %}
更多信息:对于 | 内置模板标签和过滤器 | Django 文档