1、在html顶部添加
<html xmlns:th="http://www.thymeleaf.org">
2、url表达式 @{...}
<link rel="stylesheet" type="text/css" href="../../static/css/order.css" th:href="@{/static/css/order.css}"/>
<script th:src="@{/webjars/jquery/2.1.4/jquery.min.js}" type="text/javascript" charset="utf-8"></script>
3、载入页面共同部分
<div class="head" th:include="include/head::head"></div>
以下为共同部分:
<div class="head" th:fragment="head" xmlns:th="http://www.thymeleag.org">
</div>
4、th:value="${}"
//日期格式化#dates.format()
<input type="text" readonly="readonly" name="startTime" th:value="${startTime ne null ? #dates.format(startTime,'yyyy-MM-dd HH:mm:ss'):''}">
5、th:text="${}",数据转换
//价格转换
<span th:text="${#numbers.formatDecimal(price,1,2)}">120.00</span>
//日期格式
<span th:text="${#dates.format(date,'yyyy-MM-dd')}">2016-01-01</span>
6、th:class 定义样式
7、th:selected 下拉框选中
<option value="1" th:selected="${status==1}">待付款</option>
8、th:each="orders : ${orders}" 遍历
9、th:if
<div th:if="${saleOrderMaps eq null or saleOrderMaps.size() eq 0}"></div>
10、th:switch="${items}"
th:case="1"
11、th:attr="result=${}"