Django - 在模板中的列表中获取元素索引

时间:2017-10-25 14:29:03

标签: python django django-templates

我在模板中有一个用于迭代的列表,在迭代时,我想在此列表中打印其索引。现在我正在使用list.index(element),但这不起作用。

我做:

<tbody>
   {% for core in cores %}
   <tr>
       <td>{{cores.index(core)}}</td>     <!-- this line doesn't work -->
       <td>{{core.user}}</td>             <!-- this line works. -->

这不是这样的吗?我必须做for i in length(cores)

1 个答案:

答案 0 :(得分:3)

{{forloop.counter}}就是这样。 只在元素

之前添加此行