功能
在文档中动态插入一段后端生成的html文档,使用 thymeleaf 中的 th:utext 表达式即可,示例,写一个html页面如下
<!DOCTYPE html>
<html lang="en" xmlns:th="http://www.thymeleaf.org">
<head>
<meta charset="UTF-8"/>
<title>测试页面</title>
</head>
<body>
<div> <p th:utext="${htmlcontent}">conten</p> </div>
</body>
</html>
后端的java代码如下所示:
@Controller
public class Thy {
@RequestMapping("/page")
public String getPage(Model model){
model.addAttribute("htmlcontent","<div><h4>我是B</h4></idv>");
return "home";
}
}
html文档中的 p 标签即会被替换掉。