gpt4 book ai didi

attributes - Thymeleaf:将任意值设置为任意属性

转载 作者:行者123 更新时间:2023-12-04 00:20:57 25 4
gpt4 key购买 nike

在我的Thymeleaf模板中,我需要将自定义属性设置为动态生成的值。我该怎么做?

我尝试了th:attr="name=value",但是对于“值”部分似乎非常严格。例如,我尝试生成以下属性:

<div ng-init="myUrl='http://myhost.com/something'> ... </div>

其中 http://myhost.com/somethingng-init属性的动态部分,由Thymeleaf的URL表达式生成,例如 @{...}
有什么建议如何构成可以产生上述HTML的表达式吗?

最佳答案

试试看:

<div th:attr="ng-init='myUrl=\'' + @{http://myhost.com/something} + '\''">...</div>

它将输出:
<div ng-init="myUrl=&#39;http://myhost.com/something&#39;">...</div>

关于attributes - Thymeleaf:将任意值设置为任意属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17620739/

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