Thymeleaf 模板 引用头部 尾部 最简单教程

Posted 多啦C梦

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Thymeleaf 模板 引用头部 尾部 最简单教程相关的知识,希望对你有一定的参考价值。

Thymeleaf 模板 引用头部 尾部 最简单教程 

我们可以新建一个简单的页尾模板,如:/WEB-INF/templates/footer.html,内容如下:

 

<div th:fragment="copyright">
      ? 2016 xxx
    </div>

 

上面定义了一个叫做copyright的片段,接着我们可以使用th:include或者th:replace属性来使用它:

 

<body><div th:include="footer :: copyright"></div> 
</body>

 

 

 

 

 

Thymeleaf 模板 引用头部 尾部 最简单教程 

以上是关于Thymeleaf 模板 引用头部 尾部 最简单教程的主要内容,如果未能解决你的问题,请参考以下文章

thymeleaf引用公共页面

html 公共部分怎么弄

phpcms后台管理基本操作(头部尾部的替换)

Thymeleaf 模板 在spring boot 中的引用和应用

jdbcTemplate 和 Thymeleaf模板引擎 查询 到模板赋值例子

SpringBoot:模板引擎 Thymeleaf 基础使用