无法替换Thymeleaf的th:src标签中的变量值

问题描述 投票:0回答:1

我在速度模板中使用了一个基本的图像标签。现在我将该标签转换为百万美元模板。

<img src="@domain.org.protocol@://${notiData.template}[email protected]@/images/email/mail-icon.png">

无法替换上传到我的百万美元模板中的$ {notiData.template}值。

thymeleaf
1个回答
0
投票

是的......正如评论中所述,你必须使用th:将属性与Thymeleaf表达式作为前缀。

至于你的实际表达,你需要了解standard Thymeleaf expressions ......

<img th:src="${'@domain.org.protocol@://' + notiData.template + '[email protected]@/images/email/mail-icon.png'}">
© www.soinside.com 2019 - 2024. All rights reserved.