如何在 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))
弑天下
相关分类