如何在 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): 解析有效表达式后,表达式中还有更多数据:'lcurly({)'(org.thymeleaf.exceptions.TemplateProcessingException: 计算 SpringEL 表达式时出现异常:“${ccc} == null ? '' : ${ccc}" (自定义:24))
1 回答
弑天下
TA贡献1818条经验 获得超8个赞
你的表情很糟糕。也许这些。
<div th:with="var1='blablabla'">
<div th:with="var2=var1 == null? '' : 's'">
<span th:utext="${tmpCustomerType}">show var2</span>
</div>
</div>
添加回答
举报
0/150
提交
取消