Thymeleaf教程 (十一) 一些商店的過多的模板頁面例子

訂單列表

<!DOCTYPE html SYSTEM "http://www.thymeleaf.org/dtd/xhtml1-strict-thymeleaf-4.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:th="http://www.thymeleaf.org">
    <head>
        <title>Good Thymes Virtual Grocery</title>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
        <link rel="stylesheet" type="text/css" media="all"
        href="../../../css/gtvg.css" th:href="@{/css/gtvg.css}" />
    </head>
<body>
    <h1>Order list</h1>
    <table>
        <tr>
            <th>DATE</th>
            <th>CUSTOMER</th>
            <th>TOTAL</th>
            <th></th>
        </tr>
        <tr th:each="o : ${orders}" th:class="${oStat.odd}? 'odd'">
            <td th:text="${#calendars.format(o.date,'dd/MMM/yyyy')}">13 jan 2011</td>
            <td th:text="${o.customer.name}">Frederic Tomato</td>
            <td th:text="${#aggregates.sum(o.orderLines.{purchasePrice * amount})}">23.32</td>
            <td>
                <a href="details.html" th:href="@{/order/details(orderId=${o.id})}">view</a>
            </td>
        </tr>
    </table>
    <p>
        <a href="../home.html" th:href="@{/}">Return to home</a>
    </p>
    </body>
</html>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32

這裏比較特殊的在於這句

<td th:text="${#aggregates.sum(o.orderLines.{purchasePrice * amount})}">23.32</td>
  • 1

意思是orderlines這個list對象中的purchasePrice和amount相乘並返回數值到list對像中,並通過aggregates.sum()函數相加。

訂單詳情

<!DOCTYPE html SYSTEM "http://www.thymeleaf.org/dtd/xhtml1-strict-thymeleaf-4.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:th="http://www.thymeleaf.org">
    <head>
        <title>Good Thymes Virtual Grocery</title>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
        <link rel="stylesheet" type="text/css" media="all"
        href="../../../css/gtvg.css" th:href="@{/css/gtvg.css}" />
    </head>
    <body th:object="${order}">
        <h1>Order details</h1>
        <div>
            <p><b>Code:</b> <span th:text="*{id}">99</span></p>
            <p>
            <b>Date:</b>
                <span th:text="*{#calendars.format(date,'dd MMM yyyy')}">13 jan 2011</span>
            </p>
        </div>
        <h2>Customer</h2>
        <div th:object="*{customer}">
            <p><b>Name:</b> <span th:text="*{name}">Frederic Tomato</span></p>
            <p>
            <b>Since:</b>
                <span th:text="*{#calendars.format(customerSince,'dd MMM yyyy')}">1 jan 2011</span>
            </p>
        </div>
        <h2>Products</h2>
        <table>
            <tr>
                <th>PRODUCT</th>
                <th>AMOUNT</th>
                <th>PURCHASE PRICE</th>
            </tr>
            <tr th:each="ol,row : *{orderLines}" th:class="${row.odd}? 'odd'">
                <td th:text="${ol.product.name}">Strawberries</td>
                <td th:text="${ol.amount}" class="number">3</td>
                <td th:text="${ol.purchasePrice}" class="number">23.32</td>
            </tr>
        </table>
        <div>
            <b>TOTAL:</b>
            <span th:text="*{#aggregates.sum(orderLines.{purchasePrice * amount})}">35.23</span>
        </div>
        <p>
            <a href="list.html" th:href="@{/order/list}">Return to order list</a>
        </p>
    </body>
</html>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48

就這裏特殊一點

<body th:object="${order}">
...
    <div th:object="*{customer}">
    <p><b>Name:</b> <span th:text="*{name}">Frederic Tomato</span></p>
    ...
    </div>
...
</body>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8

*{name}在這裏的意思是

<p><b>Name:</b> <span th:text="${order.customer.name}">Frederic Tomato</span></p>
  • 1
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章