首頁 > 問答 > 主體
应用程序采用sprigmvc,Thymeleaf来作为view层的数据展示。页面中试用th:each标签来遍历后端传来的List。需要取到index。
大家讲道理2017-04-17 15:18:33
<tr th:each="user,userStat:${users}">userStat是狀態變量,有index,count,size,current,even,odd,first,last等屬性,如果沒有顯示設定狀態變量,thymeleaf會預設給個「變數名稱+Stat "的狀態變數。
<tr th:each="user,userStat:${users}">
天蓬老师2017-04-17 15:18:33
我這邊看官方文件的說法是,狀態變數預設都叫iterStat,親測是可以的。