0

嗨,我在 django 模板中使用了 forloop

{% for image in images %}
{% endfor %}

执行 10 个步骤

但我想跳过第 5 步并执行剩下的我该怎么做请建议...

4

2 回答 2

5
{% for image in images %}
   {% if forloop.counter != 5 %}
    ...
   {% endif %}
{% endfor %}

https://docs.djangoproject.com/en/dev/ref/templates/builtins/#for

于 2013-04-10T11:59:56.033 回答
0
{% for image in images %}
   {% if forloop.counter0 != 5 %}
    ...
   {% endif %}
{% endfor %}

这对我有用

于 2013-04-10T12:31:26.893 回答