如何使用thymeleaf在div标签中呈现tinymce内容

时间:2014-09-27 11:16:10

标签: java html tinymce thymeleaf

我尝试使用tinymcediv代码中呈现thymeleaf内容,但它会将所有html代码呈现为文字。有没有办法将其呈现为html

<div th:text="${obj.description}">

</div>

1 个答案:

答案 0 :(得分:2)

渲染html:

 <div th:utext="${obj.description}">

 </div>

utext- unescaped text