gpt4 book ai didi

java - 如何在 th :if tag using thymeleaf 中有多个条件

转载 作者:IT老高 更新时间:2023-10-28 13:04:05 25 4
gpt4 key购买 nike

我有一个文本要使用 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}"

问题解决了!

关于java - 如何在 th :if tag using thymeleaf 中有多个条件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16018577/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com