10
कैसे करें-अगर थाइमेलफ में क्या करें?
एक सरल करने के लिए सबसे अच्छा तरीका क्या है if- elseथाइमेल्फ में? मैं 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> …
132
java
jsp
if-statement
jstl
thymeleaf