我想用我的comments数组的键将我的字符串值显示到我的数组'nameComments'{{loop.index}}
中,但{{ nameComments[{{ loop.index }}] }}
显示错误
{% for com in comments %}
<p>Comment {{ nameComments[{{ loop.index }}] }} : "{{ com['comment'] }}"</p>
{% endfor %}
如果我尝试:
{% for com in comments %}
<p>Comment {{ nameComments[1] }} : "{{ com['comment'] }}"</p>
{% endfor %}
并向{{ loop.index }}
我展示价值:1
那么如何将循环索引实现到我的数组中呢?