Thymeleaf模板中未转义的表单输入值(类似于utext)

时间:2014-12-07 13:44:08

标签: html thymeleaf

我知道您可以使用此处所述的utext显示未转义的文字:http://www.thymeleaf.org/doc/usingthymeleaf.html#unescaped-text

但是,如果我想显示表单输入的非转义值,使用data-th-value =" $ {model.value}",则没有等效的数据 - 值uvalue。

我想知道是否有办法在百里香中做到这一点?如果没有,那么最好的解决方法是什么?

1 个答案:

答案 0 :(得分:0)

我有同样的疑问,这就是我为实现这一目标而做的事情

<input type="hidden" id="responseObj" th:value="${#strings.unescapeJava(responseObj)}" />

这是我找到的唯一方式。

我希望这就是你所问的。