使用Thymeleaf将数据库中数据在CKEDITOR中显示

首先说一下Thymeleaf如何在html文档中直接输出数据

这里的实现方法有三种,本人使用的是第二种(其他均未实验,有兴趣自行尝试)
1、使用 th:block

<title>
	<th:block th:text="${msg}"/>
</title>

2、使用 inline

<title>[[${msg}]]</title>

Hello, [[ ${user.name}]]! //[[]]写法会html转义
Hello, [( ${user.name})]! //[()]写法不会html转义

3、使用 th:remove

<span th:text="${msg}" th:remove="tag"></span>

填充到CKEDITOR中

直接将拿到的数据放入< textarea ></ textarea >标签中

<div class="newblog-content">
	<textarea  id="editor" name="content">[[${update.bcontent}]]</textarea>
</div>

效果图:使用Thymeleaf将数据库中数据在CKEDITOR中显示

上一篇:怎么实现将word中的公式导入(或粘贴)到编辑中ckeditor


下一篇:django_ckeditor图片上传到七牛云