欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Thymeleaf循环时 带上序号

程序员文章站 2022-05-02 07:49:24
...

使用Thymeleaf循环列表时,有时候需要在前端显示出序号,
这时可以使用thymeleaf 循环的状态变量。

<tr th:each="service:${services}" >
        <td th:text="${serviceStat.index+1}"></td>
        <td th:text="${service.name}"></td>
        <td th:text="${service.address}"></td>
        <td th:text="${service.description}"></td>
</tr>

serviceStat是状态变量,有 index,count,size,current,even,odd,first,last等属性,如果没有显示设置状态变量,thymeleaf会默 认给个“变量名+Stat"的状态变量。

相关标签: Thymeleaf