仅在像以下这样的真表达式之后,我才需要递增计数器
{% for cats in categories %}
//reset counter
{% for item in items %}
{% if some_condition %}
//increment counter
{% endif %}
{% endfor %}
{% endfor %}
据我所知,如何用{{ forloop.counter }}
使它在循环的每一步中都在增加,如何使增量有条件地恰好在我需要的时候?
独特