渲染从数据库 Spring Boot、Thymeleaf 检索的 HTML

发布于 2025-01-13 01:53:31 字数 675 浏览 0 评论 0原文

我有一个 Spring Boot 应用程序,我使用 TinyMCE 以 HTML 格式保存内容。 “内容”正确保存在数据库中...

用于保存内容的 HTML

内容保存在数据库中

然后我使用 Thymeleaf 来显示数据,目的是保留 TinyMCE 中生成的样式。我可以显示“标题”和“详细信息”字段,但“内容”字段仅显示它在数据库中的存储方式,我希望将其呈现为 HTML

显示内容

<div class="col-sm">
    <h3>[[${document.name}]]</h3>
    <p>[[${document.details}]]</p>
    [[${document.content}]] <!--issue here-->
</div>

非常感谢任何帮助,谢谢

I have a Spring Boot application where I am saving content in HTML format using TinyMCE. The "content" save correctly in the database...

HTML for saving content

Content saved in database

I'm then using Thymeleaf to display the data with the intention of keeping the styling generated in TinyMCE. I can get the "Title" and "Details" fields to display but the "content" field just displays exactly how it is stored in the database, I would like this to render as HTML

Displaying the content

<div class="col-sm">
    <h3>[[${document.name}]]</h3>
    <p>[[${document.details}]]</p>
    [[${document.content}]] <!--issue here-->
</div>

Any help greatly appreciated, thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

如若梦似彩虹 2025-01-20 01:53:31

[[${document.content}]] 替换为 [(${document.content})] 解决了此问题

replacing [[${document.content}]] with [(${document.content})] resolved this issue

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文