使用只需要在前端頁面注意這個就行了,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>
標籤屬性 | 功能描述 | 範例 |
---|---|---|
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