gpt4 book ai didi

java - 从 thymeleaf 中的另一个变量声明变量

转载 作者:行者123 更新时间:2023-12-02 00:45:28 25 4
gpt4 key购买 nike

如何在 thymeleaf 中使用另一个变量来声明一个变量?这就是我想做的:

<div th:with="var1='blablabla'">
<div th:with="var2=${${var1} == null ? '' : 's'}">
<span th:utext="${tmpCustomerType}">show var2</span>
</div>
</div>

但是编译器不喜欢这样${var1}:

EL1041E:(pos 1): After parsing a valid expression, there is still more data in the expression: 'lcurly({)'
(org.thymeleaf.exceptions.TemplateProcessingException: Exception evaluating SpringEL expression: "${ccc} == null ? '' : ${ccc}" (custom:24))

最佳答案

你的el表达很糟糕。也许是这些。

<div th:with="var1='blablabla'">
<div th:with="var2=var1 == null? '' : 's'">
<span th:utext="${tmpCustomerType}">show var2</span>
</div>
</div>

关于java - 从 thymeleaf 中的另一个变量声明变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57904129/

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