Thymeleaf

th:switch, th:case 예제

쿠카이든 2022. 2. 15. 14:23
728x90
<table border="1">
    <thead>
    <tr>
        <td>순번</td>
        <td>상품명</td>
        <td>상품설명</td>
        <td>가격</td>
        <td>상품등록일</td>
    </tr>
    </thead>
    <tbody>
    <tr th:each="itemDto, status: ${itemDtoList}">
        <td th:switch="${status.even}">
            <span th:case=true>짝수</span>
            <span th:case=false>홀수</span>
        </td>
        <td th:text="${itemDto.itemNm}"></td>
        <td th:text="${itemDto.itemDetail}"></td>
        <td th:text="${itemDto.price}"></td>
        <td th:text="${itemDto.regTime}"></td>
    </tr>
    </tbody>
</table>
  • ${status.even}의 값이 true일 경우는 '짝수'를 출력하고, false일 경우는 홀수이므로 '홀수'를 출력

- 출처 : 스프링 부트 쇼핑몰 프로젝트 with JPA

 

728x90

'Thymeleaf' 카테고리의 다른 글

SpringEL  (0) 2023.03.18
th:each 예제  (0) 2022.02.15
th:text DTO 활용 예제  (0) 2022.02.14
(Thymeleaf) th:text  (0) 2022.02.14