在 Thymeleaf中做一个简单的最好方法是什么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>
<span th:unless="${condition}" class="xxx">Something else</span>
</div>
我不想评价potentially_complex_expression
两次。这就是我引入局部变量的原因condition
。我仍然不喜欢同时使用th:if="${condition}
和th:unless="${condition}"
。
重要的是我使用了两个不同的 HTML 标签:比如说h2
和span
.
你能提出一个更好的方法来实现它吗?