10
Як робити, якщо інше в чебрецю?
Який найкращий спосіб зробити простий if- elseв чебрецю? Я хочу досягти в Чебрецю такого ж ефекту, що і <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> Я не хочу …
132
java
jsp
if-statement
jstl
thymeleaf