Django forloop.counter0读取列表

时间:2017-11-29 20:58:39

标签: python django python-3.x django-templates django-views

使用示例读取模板列表中的列表:

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 %}

我这样做,这不起作用!

1 个答案:

答案 0 :(得分:0)

为什么不迭代new_list?

{% for value in new_list %}
    <h2>{{ value }}</h2>
{% endfor %}