10
Come fare if-else in Thymeleaf?
Qual è il modo migliore per fare un semplice if- elsein Thymeleaf? Voglio ottenere in Thymeleaf lo stesso effetto di <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> in JSTL. Quello che ho immaginato finora: <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> Non voglio …
132
java
jsp
if-statement
jstl
thymeleaf