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> জেএসটিএল এ। আমি এতক্ষণ যা ভেবে দেখেছি: <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> আমি potentially_complex_expressionদুবার মূল্যায়ন করতে …
132
java
jsp
if-statement
jstl
thymeleaf