先瞭解Thymeleaf是什麼 1. Thymeleaf 簡介 Thymeleaf 是新⼀代 Java 模板引擎,與 Velocity、FreeMarker 等傳統 Java 模板引擎不同,Thymeleaf ⽀持 HTML 原型,其⽂件尾碼為“.html”,因此它可以直接被瀏覽器打開,如果你直接瀏 ...
先瞭解Thymeleaf是什麼 1. Thymeleaf 簡介 Thymeleaf 是新⼀代 Java 模板引擎,與 Velocity、FreeMarker 等傳統 Java 模板引擎不同,Thymeleaf ⽀持 HTML 原型,其⽂件尾碼為“.html”,因此它可以直接被瀏覽器打開,如果你直接瀏覽器打開,此時瀏覽器會忽略未定義的 Thymeleaf 標簽屬性,展示thymeleaf 模板的靜態⻚⾯(沒有任何變化)效果;但是通過 Web 應⽤程式訪問時,Thymeleaf 會動態地替換掉靜態內容,使⻚⾯動態顯示。 簡而言之,就是之前你的html頁面的一個p標簽顯示的是“法外狂徒張三”,加上Thymeleaf後,通過Web 應⽤程式訪問後就變成了,“隔壁老王”。
使用只需要在前端頁面註意這個就行了(聲明命名空間,非必要,不寫idea會爆紅,但是不影響使用),html標簽裡面加上: xmlns:th="http://www.thymeleaf.org
<html lang="en" xmlns:th="http://www.thymeleaf.org">
然後就可以使用了
然後舉個例子
<h1 th:text="${'隔壁老王'}">法外狂徒張三</h1>
‘隔壁老王’ 這個地方可以使用占位符,我這樣寫比較直觀
2.Thymeleafi 簡單表達式:
- 變數表達式:${....}
- 選變數表達式:*{....}
- 消息表達式:#{....}
- 鏈接網址表達式:@{....}
- 片段表達式:~{....}
<!--thymeleaf依賴-->
<dependency>
<groupId>org.thymeleaf</groupId>
<artifactId>thymeleaf</artifactId>
<version>3.0.7.RELEASE</version>
</dependency>
3.th 屬性
標簽屬性 | 功能描述 | 示例 |
---|---|---|
th:id | 替換id | <input th:id="'xxx' + ${collect.id}"/> |
th:text | 文本替換 | <p th:text="${collect.description}">description</p> |
th:utext | 支持html的文本替換 | <p th:utext="${htmlcontent}">content</p> |
th:object | 替換對象 | <div th:object="${session.user}"> |
th:value | 屬性賦值 | <input th:value = "${user.name}" /> |
th:with | 變數賦值運算 | <div th:with="isEvens = ${prodStat.count}%2 == 0"></div> |
th:style | 設置樣式 | <div th:style="'display:' + @{(${sitrue} ? 'none' : 'inline-block')} + ''"></div> |
th:onclick | 點擊事件 | <td th:onclick = "'getCollect()'"></td |
th:each | 屬性賦值 | <tr th:each = "user,userStat:${users}"> |
th:if | 判斷條件 | <a th:if = "${userId == collect.userId}"> |
th:unless | 和th:if判斷相反,滿足條件時不顯示 | <a th:href="@{/login} th:unless=${session.user != null}">Login</a> <!--如果用戶已登錄,則不顯示登錄按鈕--> |
th:href | 鏈接地址 | <a th:href="@{/login}" th:unless=${session.user != null}>Login</a> |
th:switch | 多路選擇,配合th:case使用 | <div th:switch="${user.role}"> |
th:fragment | 模板佈局,類似jsp的tag | <div th:fragment="footer">© 2013 Footer</div> |
th:include | 佈局標簽,替換內容到引入的文件 | <head th:include="layout :: htmlhead" th:with="title='xx'"></head> |
th:replace | 佈局標簽,替換整個標簽到引入的文件 | <div th:replace="fragments/header :: title"></div> |
th:selected | select選擇框選中 | th:selected="(${xxx.id} == ${configObj.dd})" |
th:src | 圖片類地址引入 | <img class="img-responsive" alt="App Logo" th:src="@{/img/logo.png}" /> |
th:inline | 定義js腳本可以使用變數 | <script type="text/javascript" th:inline="javascript"> |
th:action | 表單提交的地址 | <form action="subscribe.html" th:action="@{/subscribe}"> |
th:remove | 刪除某個屬性 |
|
th:attr | 設置標簽屬性,多個屬性可以使用逗號分隔 | 比如 th:attr="src=@{/image/aa.jpg},title=#{logo}",此標簽不太優雅,一般用的比較少。 |
https://www.jianshu.com/p/f9ebd23e8da4
創作不易,點一個贊再走
本文來自博客園,作者:Aons謙,轉載請註明原文鏈接:https://www.cnblogs.com/Aons0812/p/16537582.html