我将列表uans
作为模板的上下文传递。我想迭代uans
来显示其中的值。我的代码如下:
{% for q in qlist %}
<span>You answered: {{ uans.{{forloop.counter0}} }}</span>
{% endfor %}
但是我收到了这个错误:
Could not parse the remainder: '{{forloop.counter0' from 'uans.{{forloop.counter0'
如果我写uans.0
,uans.1
等等,它可以正常工作。
我想使用forloop计数器作为索引。
我想仅使用计数器迭代uans
。
请提出解决方案。谢谢:))