从百里香中的另一个变量声明变量

如何在 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))


大话西游666
浏览 82回答 1
1回答

弑天下

你的表情很糟糕。也许这些。<div th:with="var1='blablabla'">&nbsp; &nbsp; <div th:with="var2=var1 == null? '' : 's'">&nbsp; &nbsp; &nbsp; &nbsp;<span th:utext="${tmpCustomerType}">show var2</span>&nbsp; &nbsp; &nbsp;&nbsp;&nbsp; &nbsp; </div></div>
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Java