我想在循环中使用计数器,因此每个表的行都有其唯一id
属性,该属性指示当前循环迭代。如何访问当前索引?(在标记为的示例代码中ITERATOR_HERE
)
<table id="table_id" class="display">
<thead>
<th>Key</th>
<th>Value</th>
<th></th>
</thead>
<tbody>
#{list items:paras, as:'elem' }
<tr>
<td id="ITERATOR_HERE">${elem.sendAllKey}</td>
<td>${elem.sendAllValue}</td>
<td>button</td>
</tr>
#{/list}
</tbody>
</table>