使用th评估多重表达:如果在Thymeleaf中

时间:2018-03-22 13:14:20

标签: if-statement thymeleaf

我想知道多个表达式的正确语法是什么:如果在Thymeleaf中。 到目前为止,我有这样的事情:

<a style="color:blue" th:href="@{/approveAndJoin/{name}(name=${outbox.receiverName})}" th:if="${not #strings.startsWith(outbox.status, 'P')}">Join Team?!</a>

执行以下操作的正确语法是什么: (伪代码)

th:if="${not #strings.startsWith(outbox.status, 'P') && #strings.startsWith(inbox.status, 'A'}"

我已经阅读了各种手册,但还没有发现如何做到这一点。

1 个答案:

答案 0 :(得分:1)

您可以将多个条件与关键字and

结合使用

e.g。在您的情况下th:if="${not #strings.startsWith(outbox.status, 'P') and #strings.startsWith(inbox.status, 'A'}"