반응형
<!--데이터가 있을 때-->
<th:block th:if="${#lists.size(list) >0}">
<tr th:each="list : ${list}">
<td th:text="${list.no}"></td>
<td><a th:href="@{/reg(boardNo=${list.boardNo}, type=${search.type}, keyword=${search.keyword})}" th:text="${list.title}"></a></td>
<td th:text="${list.content}"></td>
<td th:text="${list.writer}"></td>
<td th:text="${list.regDate}"></td>
<td th:text="${list.modDate}"></td>
<td><a href="#" th:onclick="|javascript:del('${list.boardNo}')|" class="btn btn-danger">삭제</a></td>
</tr>
</th:block>
<!--데이터가 없을 때-->
<th:block th:unless="${#lists.size(list) >0}">
<tr><td colspan="6">데이터가 없다.</td></tr>
</th:block>
※ 삽질을 좀 했는데 th:if의 조건과 th:unless의 조건은 동일하게 적어야 한다.
반응형
'IT > development' 카테고리의 다른 글
[springBoot] 공휴일 조회 API (0) | 2023.05.15 |
---|---|
[logback] log pattern 설정 (2) | 2023.05.14 |
[logback] logback 파일 생성 (0) | 2023.05.13 |
[springBoot] springBoot Interceptor 로그인 체크 (0) | 2023.05.13 |
[springBoot] spring boot jar파일 배포 삽질(feat. 리눅스) (0) | 2023.05.13 |