首先说一下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>
效果图: