10
Jak zrobić if-else w Thymeleaf?
Jak najlepiej zrobić coś prostego if- elsew Thymeleaf? Chcę osiągnąć w Thymeleaf taki sam efekt jak <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> w JSTL. Co doszedłem do tej pory: <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> Nie chcę oceniać potentially_complex_expressiondwa razy. Dlatego …
135
java
jsp
if-statement
jstl
thymeleaf