渲染从数据库 Spring Boot、Thymeleaf 检索的 HTML
我有一个 Spring Boot 应用程序,我使用 TinyMCE 以 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...
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
<div class="col-sm">
<h3>[[${document.name}]]</h3>
<p>[[${document.details}]]</p>
[[${document.content}]] <!--issue here-->
</div>
Any help greatly appreciated, thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将
[[${document.content}]]
替换为[(${document.content})]
解决了此问题replacing
[[${document.content}]]
with[(${document.content})]
resolved this issue