我在django模板中使用forloop
{% for image in images %}
{% endfor %}
执行10个步骤
但我想跳过第5步并执行剩余 我怎么能这样做,请建议......
答案 0 :(得分:4)
{% for image in images %}
{% if forloop.counter != 5 %}
...
{% endif %}
{% endfor %}
https://docs.djangoproject.com/en/dev/ref/templates/builtins/#for
答案 1 :(得分:0)
{% for image in images %}
{% if forloop.counter0 != 5 %}
...
{% endif %}
{% endfor %}
这对我有用