thymeleaf引入公共页面的某个片段

Posted ??红尘^_^有梦??

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了thymeleaf引入公共页面的某个片段相关的知识,希望对你有一定的参考价值。

引入公共片段
引入公共片段的th属性,包括三种方式

th:insert
将公共片段,整个插入到声明引入的元素中

th:replace
将声明引入的元素,替换为公共片段

th:include
将被引入的片段的内容,包含进这个标签中

抽取公共片段

 <footer th:fragment="copy">
  2011
 </footer>

引入方式

1 <div th:insert="footer :: copy"></div>
2 <div th:replace="footer :: copy"></div>
3 <div th:include="footer :: copy"></div>

引入语法~{模板名(即html)::片段名} 
波浪线、花括号可以写,可以不写

但是,在行内写法中[[~{}]]、[(~{})] 
必须,加上~{}

以上是关于thymeleaf引入公共页面的某个片段的主要内容,如果未能解决你的问题,请参考以下文章

thymeleaf公共页面元素抽取

thymeleaf

使用thymeleaf模板引擎抽取公共页面

Spring boot:thymeleaf 没有正确渲染片段

Thymeleaf引用片段传入参数

thymeleaf 片段渲染后重新加载 javascript