使用示例读取模板列表中的列表:
a_list = ['a', 'b', 'c', 'd']
new_list = [1, 2, 3, 4]
如何访问模板中的 new_list 值
{% for value in a_list %}
<h2>{{ a_new_list.forloop.counter.0 }}</h2>
{% endfor %}
我这样做,这不起作用!
答案 0 :(得分:0)
为什么不迭代new_list?
{% for value in new_list %}
<h2>{{ value }}</h2>
{% endfor %}