Thymeleaf

一、在html頂部添加javascript

<html xmlns:th="http://www.thymeleaf.org">

二、url表達式 @{...} css

<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>

三、載入頁面共同部分html

<div class="head" th:include="include/head::head"></div>

  如下爲共同部分:java

<div class="head" th:fragment="head" xmlns:th="http://www.thymeleag.org">
    
</div>

四、th:value="${}"jquery

//日期格式化#dates.format()
<input type="text" readonly="readonly" name="startTime" th:value="${startTime ne null ? #dates.format(startTime,'yyyy-MM-dd HH:mm:ss'):''}">

五、th:text="${}",數據轉換web

//價格轉換
<span th:text="${#numbers.formatDecimal(price,1,2)}">120.00</span>
//日期格式
<span th:text="${#dates.format(date,'yyyy-MM-dd')}">2016-01-01</span>

六、th:class 定義樣式url

七、th:selected 下拉框選中spa

<option value="1" th:selected="${status==1}">待付款</option>

八、th:each="orders : ${orders}" 遍歷code

九、th:iform

<div th:if="${saleOrderMaps eq null or saleOrderMaps.size() eq 0}"></div>

十、th:switch="${items}"

  th:case="1"

十一、th:attr="result=${}"

相關文章
相關標籤/搜索