应用程序采用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,親測是可以的。