其他分享
首页 > 其他分享> > springboot web开发中使用thymeleaf导入模板的三种方式

springboot web开发中使用thymeleaf导入模板的三种方式

作者:互联网

例:

第一步:声明

公共的东西用th:fragment声明 或者 选择器声明

<footer th:fragment="copy">
  &copy; 2011 The Good Thymes Virtual Grocery
</footer>

选择器声明

<div id="commonscript"></div>

第二步:引用

三种方式

<body>
  <div th:insert="footer :: copy"></div>    //+div变迁一同导入
  <div th:replace="footer :: copy"></div>  //-div,只有footer
  <div th:include="footer :: copy"></div>  //只包含内容
</body>

结果不同

<body>
  <div>
    <footer>
      &copy; 2011 The Good Thymes Virtual Grocery
    </footer>
  </div>

  <footer>
    &copy; 2011 The Good Thymes Virtual Grocery
  </footer>

  <div>
    &copy; 2011 The Good Thymes Virtual Grocery
  </div>
  
</body>

标签:web,Grocery,Good,springboot,Thymes,Virtual,thymeleaf,copy,2011
来源: https://blog.csdn.net/weixin_46529416/article/details/119246573