在Django模板中使用forloop计数器作为列表索引

时间:2016-03-23 16:07:25

标签: python django

我将列表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.0uans.1等等,它可以正常工作。 我想使用forloop计数器作为索引。 我想仅使用计数器迭代uans

请提出解决方案。谢谢:))

0 个答案:

没有答案