Thymeleaf - 如何将 HTML 传递给 div?

Thymeleaf - How to pass HTML to the div?

如何将 HTML 从变量传递给 div

我有密码

<div class="content" th:text="${ourService.getShortText()}" />

但它在 div 中显示的不是 HTML,而是将 HTML 转义为 div 文本。 如何传递变量的值而不是作为转义文本,而是作为 div?

的内部 HTML

解决方法如下:

<div class="content" th:utext="${ourService.getShortText()}" />