<html lang="en" xmlns:th="http://www.thymeleaf.org">
*文本text區別html
<!--區別一個不能夠解析標籤,--> <h1 th:text="${title}">歡迎</h1> <!--區別一個可解析標籤--> <h1 th:utext="${title}">歡迎</h1>
*循環獲取 text的值code
<h3 th:each="name:${data}" th:text="${name}">在這顯示名字</h3>
*處理網址orm
<a href="" th:href="@{/user}">點我</a>
*a 標籤的鏈接寫法
在配置文件中配置通用地址server
server.servlet.context-path=/dev
a 標籤會自動在前面加上這個地址xml
<!--鏈接寫法--> <!--這種寫法會在前面自動拼接context-path--> <a href="" th:href="@{/dep/list}">對的連接/dep/list</a>
*form表單htm
<form action="" th:action="@{/user}"> <input type="text" name="" th:value="${name}"> </form>
*fragment 與replace, includeinput
fragment 是寫通用片斷的 建立一個html 專寫它servlet
<div class="fg" th:fragment="footer" > <h1>首頁</h1> </div>
在其餘頁面調取it
replace 與include 的區別io
<!--引入片斷--> <!--替換 保留的內層標籤--> <div class="emp" th:replace="fragmets::footer"></div> <!--導入 保留的外層標籤--> <div class="emp" th:include="fragmets::footer"></div>