本文介绍了如何改变胸腺叶中变量的值?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我对胸腺叶不熟悉。我现在有点糊涂了。请查看以下代码
<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>
这篇关于如何改变胸腺叶中变量的值?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!