如何改变胸腺叶中变量的值?
我对胸腺叶不熟悉。我现在有点糊涂了。请查看以下代码
<th:block th:with="${someVarible=false}">
<th:block th:each="dem : ${demo}">
<th:block th:if="${dem.status==0}">
//Here I need to change the value of someVarible to true
</th:block>
</th:block>
<th:block th:if="${someVariable}">Its true</th:block>
</th:block>
我需要编辑某个变量的值。我怎么才能做到这一点。提前谢谢。
解决方案
正如Lukas所说,不可能更改Thymeleaf中变量的值,因为这只适用于该元素中的内容。不过,仅使用百里香也有可能获得非常相似的效果。
您可以使用Collection Selection和^[...]
语法选择列表中与条件status==0
匹配的第一个元素。此表达式如下所示:
${demo.^[status==0]}
如果demo
列表包含带有status==0
的元素,则将返回该元素。否则,它将导致NULL。可以直接在您的th:if
中使用:
<th:block th:if="${demo.^[status==0]}">Its true</th:block>
或者,如果您还需要使用someVariable
进行其他操作,可以使用th:with
(Docs)将其赋值给变量:
<th:block th:with="someVariable=${demo.^[status==0]}">
<th:block th:if="${someVariable}">Its true</th:block>
</th:block>
相关文章