我编写了一个自定义模板标记get_item,它接受一个索引并返回该索引的会话持有列表中的项目。我的问题是我似乎无法在另一个模板命令标签中访问forloop.counter。
{% for item in form %}
{% get_item {{ forloop.counter }} %} --> How do I get this working?
{{ item }}
{% endfor %}
我怎样才能克服这个?
谢谢!
答案 0 :(得分:2)
应为{% get_item forloop.counter %}