我有一个文本,可以使用 thymeleaf 以三种不同的颜色呈现。

因此,我到目前为止测试该值的代码是:

th:if="${evaluation} > 50"
th:if="${evaluation} < 30"

而且效果很好。

但是第三项测试是针对两者之间的值。
所以我尝试了:
th:if="(${evaluation} < 49) ∧ (${evaluation} > 29)"

但它不起作用,我在解析时遇到此错误:
org.thymeleaf.exceptions.TemplateProcessingException: Could not parse as expression: "(${evaluation} < 49) &and; (${evaluation} > 29)" (/property.html:41)

当然,这些行位于标签之间,因为前两个标签工作正常。

也许and操作数是不正确的,但是关于这些操作数的thymeleaf文档并没有真正明确。

欢迎所有想法!

更新:我从 thymeleaf 论坛上得到了答案。这样做的方法是:
th:if="${evaluation &lt; 49 and evaluation &gt; 29}"

问题解决了!

最佳答案

我从 thymeleaf 论坛上得到了答案。这样做的方法是:

th:if="${evaluation &lt; 49 and evaluation &gt; 29}"

问题解决了 !

10-08 15:07