嗨,我在 django 模板中使用了 forloop
{% for image in images %}
{% endfor %}
执行 10 个步骤
但我想跳过第 5 步并执行剩下的我该怎么做请建议...
{% for image in images %}
{% if forloop.counter != 5 %}
...
{% endif %}
{% endfor %}
https://docs.djangoproject.com/en/dev/ref/templates/builtins/#for
{% for image in images %}
{% if forloop.counter0 != 5 %}
...
{% endif %}
{% endfor %}
这对我有用