spring boot thymeleaf 替换页面中的html内容

功能

      在文档中动态插入一段后端生成的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 标签即会被替换掉。

    原文作者:羊掌门
    原文地址: https://blog.csdn.net/q56231293811/article/details/79877325
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞