thymeleaf 引入模板


thymeleaf 引入模板

 

 

*********************

模板引入表达式


~{templateName :: fragement} ==》 template :: fragment(两者等效)

 

templateName:模板名称,如 index.html在默认目录templates下,若要引入index.html中的片段,则需将templateName设置为index

fragment:th:fragment定义的名称,也可以是 juqery 选择器(#id、div、.class等)

 

说明:

templateName缺省(::fragment)引入本地模版

fragmentment缺省(templateName)将templateName全部引入

 

 

*********************

相关标签

 

th:fragment:定义模板片段

    
© 2011 The Good Thymes Virtual Grocery

 

th:insert:插入模板片段,模版片段作为当前标签的子标签插入

//两者等同 ************ 插入结果
© 2011 The Good Thymes Virtual Grocery

 

th:replace:使用模板片段替换当前标签

//两者等同 *********** 插入结果
© 2011 The Good Thymes Virtual Grocery

 

th:include :从3.0 开始已经不推荐使用

 


 

*********************

示例

 

commons.html




    
    Title


欢迎,瓜田李下

 

index.html




    
    Title



hello world

 

 

*********************

使用测试

 

                                             thymeleaf 引入模板_第1张图片

 

               thymeleaf 引入模板_第2张图片

说明:引入全部模版时,head信息也会引入

 

 

你可能感兴趣的:(thymeleaf)