10
Thymeleaf에서 if-else를 수행하는 방법?
간단하게 할 수있는 가장 좋은 방법은 무엇입니까 if- elseThymeleaf의는? 나는 Thymeleaf에서와 동일한 효과를 달성하고 싶습니다 <c:choose> <c:when test="${potentially_complex_expression}"> <h2>Hello!</h2> </c:when> <c:otherwise> <span class="xxx">Something else</span> </c:otherwise> </c:choose> JSTL에서. 내가 지금까지 생각한 것 : <div th:with="condition=${potentially_complex_expression}" th:remove="tag"> <h2 th:if="${condition}">Hello!</h2> <span th:unless="${condition}" class="xxx">Something else</span> </div> potentially_complex_expression두 번 평가하고 싶지 않습니다 . 그래서 로컬 …
132
java
jsp
if-statement
jstl
thymeleaf