应用程序采用sprigmvc,Thymeleaf来作为view层的数据展示。页面中试用th:each标签来遍历后端传来的List。需要取到index。
光阴似箭催人老,日月如移越少年。
<tr th:each="user,userStat:${users}">userStat是状态变量,有 index,count,size,current,even,odd,first,last等属性,如果没有显示设置状态变量,thymeleaf会默 认给个“变量名+Stat"的状态变量。
<tr th:each="user,userStat:${users}">
我这边看官方文档的说法是,状态变量默认都叫iterStat,亲测是可以的。
<tr th:each="user,userStat:${users}">
userStat是状态变量,有 index,count,size,current,even,odd,first,last等属性,如果没有显示设置状态变量,thymeleaf会默 认给个“变量名+Stat"的状态变量。
我这边看官方文档的说法是,状态变量默认都叫iterStat,亲测是可以的。