thymeleaf

Posted xiaoayu

tags:

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

th:href=”@{路径地址}

 

 

公共页面元素抽取

1抽取公共片段

<div th:fragment="copy">   //copy自己起的名字

 

 

2、引入公共片段

<div th:insert="~{footer :: copy}"></div>   //footer是从哪里引入的资源

 

th:peplace:   替换当前标签为模板中的标签,加载的节点会整个替换掉加载他的div 

 

外围包裹–block

有时候需要在代码外部加层条件,但写div之类的又影响样式,此情况下你可以用下面这种方式:

   <th:block th:with="score=${test.Score}">

        <td th:if="${score} ge 60">及格啦</td>

    </th:block>

th:classappend

 

 

两端分离

加上/*/thymeleaf里面可以用

 

 

以上是关于thymeleaf的主要内容,如果未能解决你的问题,请参考以下文章

springboot_web开发

Spring Boot整合Thymeleaf

Thymeleaf快速入门

Thymeleaf快速入门

Thymeleaf 模板引擎

SpringBoot第九章 Thymeleaf 模板引擎