将变量附加到散列键

时间:2014-07-12 15:04:02

标签: string thymeleaf

是否可以在Thymeleaf属性中使用#

我需要设置属性data-target,其中值以散列键开头。

所以,最后它应该看起来像data-target=#1234。这里的问题是,1234来自数据库,应该通过Thymeleaf设置。

我尝试th:attr = "'data-target = #' + ${affiliate.identificationCode}"但这会引发错误:无法解析为分配序列:“'data-target =#'+ $ {affiliate.identificationCode}”

如何将变量附加到哈希?

1 个答案:

答案 0 :(得分:0)

我相信您需要将'#'放在$ {}

喜欢th:attr="data-target=${'#' + affiliate.identificationCode}"