gpt4 book ai didi

java - 用于 noscript 中使用的 spring 模型变量的 thymeleaf 语法

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

使用 thymeleaf 在 noscript 中检索 spring 模型值的语法

[[${gtmUrl}]] 在脚本标签内工作正常,但不适用于 noscript

是否有不同的语法

在java Controller 中设置gtmUrl属性

model.addAttribute("gtmUrl", "http://test.com");

在 HTML 中,

<noscript>
<iframe src="[[${gtmUrl}]]"
height="0" width="0" style="display: none; visibility: hidden"></iframe>
</noscript>

最佳答案

尝试使用th:src="${gtmUrl}"

 <noscript>
<iframe th:src="${gtmUrl}" height="0" width="0" style="display: none; visibility: hidden"></iframe>
</noscript>

关于java - 用于 noscript 中使用的 spring 模型变量的 thymeleaf 语法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56963047/

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