10
Làm thế nào để làm if-other trong Thymeleaf?
Cách tốt nhất để làm một cách đơn giản if- elsetrong Thymeleaf là gì? Tôi muốn đạt được trong Thymeleaf hiệu quả tương tự như <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> trong JSTL. Những gì tôi đã tìm ra cho đến nay: <div th:with="condition=${potentially_complex_expression}" th:remove="tag"> …
132
java
jsp
if-statement
jstl
thymeleaf