develog

[thymeleaf] #strings.isEmpty() 본문

카테고리 없음

[thymeleaf] #strings.isEmpty()

냐옴 2022. 11. 8. 23:13

 

<!--값이 없으면-->
<div th:if="${#strings.isEmpty(value)}">값이 없습니다</div>

<!--값이 있으면-->
<div th:if="${!#strings.isEmpty(value)}">값이 있습니다</div>
Comments