- 方法 一
th:each="user,userStat:${userList}" th:if="${userStat.index}"
- 方法 二
th:each="user:${userList}" th:if="${userStat.index}"
userStat是状态变量,有 index,count,size,current,even,odd,first,last等属性,如果没有显示设置状态变量,thymeleaf会默 认给个“变量名+Stat
"的状态变量。
就是:将所传对象如:user,加上Stat变成userStat即可使用,也就是第二种方式
注:如果是用user.index则获取不到索引值
- 固定遍历数量的实现
对之前获得的索引值进行个if约束
# 遍历到索引值到100的数据 th:if="${userStat.index} lt 100"