thymeleaf의th:each용법
<table><thead><tr><th> th><th> th><th> th><th> th>tr><tr th:each="user:${userlist}"><td th:text="${user.id}">td><td th:text="${user.username}">td><td th:text="${user.password}">td><td th:text="${user.petname}">td>tr>thead>table>
2.다음 변수 반복 사용법:
상태 변수는 th로 정의됩니다. 각 속성과 다음 데이터가 포함됩니다.
1.현재 교체 인덱스, 0부터 시작합니다.이것은 색인 속성입니다.index
2.현재 교체 인덱스, 1부터.이것은 통계 속성이다.count
3.원소의 총량 교체 변수.이것은 크기 속성입니다. size
4.iter 변수는 모든 교체입니다.이것은 현재의 재산이다. current
5.현재 교체가 홀수인지 짝수인지 여부.이 even/odd의 볼 속성들
6.첫 번째 현재 교체 여부.이것은 퍼스트볼 속성입니다.
7.마지막 현재 교체 여부.이것은 last 부울 속성입니다.
사용 사례:
<table><thead><tr><th> th><th> th><th> th><th> th>tr><tr th:each="user,userStat:${userlist}" th:class="${userStat.odd}?'odd':'even'"><td th:text="${user.id}">td><td th:text="${user.username}">td><td th:text="${user.password}">td><td th:text="${user.petname}">td>tr>thead>table>
status를 인쇄하는 값은 다음과 같습니다.
만약 교체 변수를 현저하게 설정하지 않는다면, Thymeleaf는 항상 통계의 이름을 접두사 iter 변수로 만듭니다.
<table><tr><th>NAMEth><th>PRICEth><th>IN STOCKth>tr><tr th:each="prod : ${prods}" th:class="${prodStat.odd}? 'odd'"><td th:text="${prod.name}">Onionstd><td th:text="${prod.price}">2.41td><td th:text="${prod.inStock}? #{true} : #{false}">yestd>tr>table>
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
org.thymeleaf.exceptions.TemplateProcessingException: SpringEL Expression 솔루션 평가 예외thymeleaf 탭이 백그라운드에서 전달되는 값을 받지 못했는지 보세요. Caused by: org.thymeleaf.exceptions.TemplateProcessingException: Exception eva...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.