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>
上一篇:C++ //纯虚函数和抽象类 // 语法 virtual 返回值类型 函数名 (参数列表)=0 //当类中有了纯虚函数 这个类也称为抽象类


下一篇:VFIO-MDEV driver access virtual machine‘s memory