148

在 Thymeleaf中做一个简单的最好方法是什么ifelse

我想在 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 标签:比如说h2span.

你能提出一个更好的方法来实现它吗?

4

11 回答 11

234

Thymeleaf 等效于<c:choose>and <c:when>:Thymeleaf 2.0 中引入的th:switchand属性。th:case

它们按照您的预期工作,*用于默认情况:

<div th:switch="${user.role}"> 
  <p th:case="'admin'">User is an administrator</p>
  <p th:case="#{roles.manager}">User is a manager</p>
  <p th:case="*">User is some other thing</p> 
</div>

有关语法的快速说明(或 Thymeleaf 教程),请参阅此内容。

免责声明:根据 StackOverflow 规则的要求,我是 Thymeleaf 的作者。

于 2012-11-28T09:24:14.333 回答
126

我尝试使用此代码来确定客户是登录还是匿名。我确实使用了th:ifth:unless条件表达式。很简单的方法来做到这一点。

<!-- IF CUSTOMER IS ANONYMOUS -->
<div th:if="${customer.anonymous}">
   <div>Welcome, Guest</div>
</div>
<!-- ELSE -->
<div th:unless="${customer.anonymous}">
   <div th:text=" 'Hi,' + ${customer.name}">Hi, User</div>
</div>
于 2013-01-02T11:51:14.303 回答
30

除了 Daniel Fernández,我还想分享我与安全相关的示例。

<div th:switch="${#authentication}? ${#authorization.expression('isAuthenticated()')} : ${false}">
    <span th:case="${false}">User is not logged in</span>
    <span th:case="${true}">Logged in user</span>
    <span th:case="*">Should never happen, but who knows...</span>
</div>

这是混合“身份验证”和“授权”实用程序对象的复杂表达式,它为 thymeleaf 模板代码产生“真/假”结果。

'authentication' 和 'authorization' 实用程序对象来自thymeleaf extras springsecurity3 library。当 'authentication' 对象不可用或 authorization.expression('isAuthenticated()') 评估为 'false' 时,表达式返回 ${false},否则返回 ${true}。

于 2013-01-14T11:10:13.080 回答
21

您可以使用

If-then-else:  (if) ? (then) : (else)

例子:

'User is of type ' + (${user.isAdmin()} ? 'Administrator' : (${user.type} ?: 'Unknown'))

对于提出相同问题的新人来说,这可能很有用。

于 2014-04-25T17:05:05.783 回答
14

另一种解决方案 - 您可以使用局部变量:

<div th:with="expr_result = ${potentially_complex_expression}">
    <div th:if="${expr_result}">
        <h2>Hello!</h2>
    </div>
    <div th:unless="${expr_result}">
        <span class="xxx">Something else</span>
    </div>
</div>

更多关于局部变量:
http ://www.thymeleaf.org/doc/tutorials/2.1/usingthymeleaf.html#local-variables

于 2015-10-06T09:37:49.140 回答
10

在更简单的情况下(当 html 标签相同时):

<h2 th:text="${potentially_complex_expression} ? 'Hello' : 'Something else'">/h2>
于 2017-04-01T19:47:00.680 回答
7

另一种解决方案只是not用来获得相反的否定:

<h2 th:if="${potentially_complex_expression}">Hello!</h2>
<span class="xxx" th:if="${not potentially_complex_expression}">Something else</span>

文档中所述,它与使用th:unless. 正如其他答案所解释的:

此外,th:if还有一个逆属性 ,th:unless我们可以在前面的示例中使用它,而不是在 OGNL 表达式中使用 not

使用not也可以,但恕我直言,使用它th:unless而不是用not.

于 2017-03-22T15:29:52.143 回答
3

th:switch用作_if-else

<span th:switch="${isThisTrue}">
  <i th:case="true" class="fas fa-check green-text"></i>
  <i th:case="false" class="fas fa-times red-text"></i>
</span>

th:switch用作_switch

<span th:switch="${fruit}">
  <i th:case="Apple" class="fas fa-check red-text"></i>
  <i th:case="Orange" class="fas fa-times orange-text"></i>
  <i th:case="*" class="fas fa-times yellow-text"></i>
</span>
于 2020-05-13T00:28:16.963 回答
2
<div th:switch="${user.role}"> 
<p th:case="'admin'">User is an administrator</p>
<p th:case="#{roles.manager}">User is a manager</p>
<p th:case="*">User is some other thing</p> 
</div>


<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>
于 2018-05-08T06:10:35.787 回答
1
<div style="width:100%">
<span th:each="i : ${#numbers.sequence(1, 3)}">
<span th:if="${i == curpage}">
<a href="/listEmployee/${i}" class="btn btn-success custom-width" th:text="${i}"></a
</span>
<span th:unless="${i == curpage}">
<a href="/listEmployee/${i}" class="btn btn-danger custom-width" th:text="${i}"></a> 
</span>
</span>
</div>

在此处输入图像描述

于 2019-01-03T04:11:44.713 回答
0

当我想根据用户的性别显示照片时,这对我有用:

<img th:src="${generou}=='Femenino' ? @{/images/user_mujer.jpg}: @{/images/user.jpg}" alt="AdminLTE Logo" class="brand-image img-circle elevation-3">

于 2021-01-19T21:40:04.173 回答