应用程序采用sprigmvc,Thymeleaf来作为view层的数据展示。页面中试用th:each标签来遍历后端传来的List。需要取到index。
光阴似箭催人老,日月如移越少年。
<tr th:each="user,userStat:${users}">userStat은 인덱스, 개수, 크기, 현재, 짝수, 홀수, 첫 번째, 마지막 등과 같은 속성을 가진 상태 변수입니다. 상태 변수가 명시적으로 설정되지 않으면 thymeleaf는 " 변수 이름 Stat" "의 상태 변수.
<tr th:each="user,userStat:${users}">
여기서 읽은 공식 문서에 따르면 상태 변수는 기본적으로 iterStat이라고 되어 있으며 직접 테스트가 가능합니다.
<tr th:each="user,userStat:${users}">
userStat은 인덱스, 개수, 크기, 현재, 짝수, 홀수, 첫 번째, 마지막 등과 같은 속성을 가진 상태 변수입니다. 상태 변수가 명시적으로 설정되지 않으면 thymeleaf는 " 변수 이름 Stat" "의 상태 변수.
여기서 읽은 공식 문서에 따르면 상태 변수는 기본적으로 iterStat이라고 되어 있으며 직접 테스트가 가능합니다.