91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

SpringBoot 中Thymeleaf如何使用

發布時間:2021-06-15 14:05:31 來源:億速云 閱讀:142 作者:Leah 欄目:大數據

本篇文章給大家分享的是有關SpringBoot 中Thymeleaf如何使用,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。

  1. 標準表達式語法

  • 變量表達式

變量表達式即 OGNL 表達式或 Spring EL 表達式(在 Spring 術語中也叫 model attributes)。如下所示:

${session.user.name}

它們將以HTML標簽的一個屬性來表示:

<span th:text="${book.author.name}">
<li th:each="book : ${books}">
  • 選擇(星號)表達式

選擇表達式很像變量表達式,不過它們用一個預先選擇的對象來代替上下文變量容器(map)來執行,如下:

*{customer.name}

被指定的 object 由 th:object 屬性定義:

<div th:object="${book}">
  ...
  <span th:text="*{title}">...</span>
  ...
</div>
  • 文字國際化表達式

文字國際化表達式允許我們從一個外部文件獲取區域文字信息(.properties),用 Key 索引 Value,還可以提供一組參數(可選).

#{main.title}  
#{message.entrycreated(${entryId})}

可以在模板文件中找到這樣的表達式代碼:

<table>
  ...
  <th th:text="#{header.address.city}">...</th>
  <th th:text="#{header.address.country}">...</th>
  ...
</table>
  • URL表達式

URL 表達式指的是把一個有用的上下文或回話信息添加到 URL,這個過程經常被叫做 URL 重寫。

@{/order/list}

URL還可以設置參數:

@{/order/details(id=${orderId})}

相對路徑:

@{../documents/report}

讓我們看這些表達式:

<form th:action="@{/createOrder}">
<a href="main.html" th:href="@{/main}">
  • 變量表達式和星號表達式有什么區別?

如果不考慮上下文的情況下,兩者沒有區別;星號語法評估在選定對象上表達,而不是整個上下文 什么是選定對象?就是父標簽的值,如下:

<div th:object="${session.user}">
  <p>Name: <span th:text="*{firstName}">Sebastian</span>.</p>
  <p>Surname: <span th:text="*{lastName}">Pepper</span>.</p>
  <p>Nationality: <span th:text="*{nationality}">Saturn</span>.</p>
</div>

這是完全等價于:

<div th:object="${session.user}">
  <p>Name: <span th:text="${session.user.firstName}">Sebastian</span>.</p>
  <p>Surname: <span th:text="${session.user.lastName}">Pepper</span>.</p>
  <p>Nationality: <span th:text="${session.user.nationality}">Saturn</span>.</p>
</div>

當然,美元符號和星號語法可以混合使用:

<div th:object="${session.user}">
	  <p>Name: <span th:text="*{firstName}">Sebastian</span>.</p>
  	  <p>Surname: <span th:text="${session.user.lastName}">Pepper</span>.</p>
      <p>Nationality: <span th:text="*{nationality}">Saturn</span>.</p>
  </div>
  • 表達式支持的語法

    • If-then:(if) ? (then)

    • If-then-else:(if) ? (then) : (else)

    • Default: (value) ?:(defaultvalue)

    • 所有這些特征可以被組合并嵌套:

    • 比較(Comparators):>, <, >=, <= (gt, lt, ge, le)

    • 等值運算符(Equality operators):==, != (eq, ne)

    • 二元運算符(Binary operators):and, or

    • 布爾否定(一元運算符)Boolean negation (unary operator):!, not

    • 二元運算符(Binary operators):+, -, *, /, %

    • 減號(單目運算符)Minus sign (unary operator):-

    • 字符串連接(String concatenation):+

    • 文本替換(Literal substitutions):|The name is ${name}|

    • 文本文字(Text literals): 'one text', 'Another one!',…

    • 數字文本(Number literals): 0, 34, 3.0, 12.3,…

    • 布爾文本(Boolean literals): true, false

    • 空(Null literal):null

    • 文字標記(Literal tokens): one, sometext, main,…

    • 字面(Literals)

    • 文本操作(Text operations)

    • 算術運算(Arithmetic operations)

    • 布爾操作(Boolean operations)

    • 比較和等價(Comparisons and equality)

    • 條件運算符Conditional operators)

      	'User is of type ' + (${user.isAdmin()} ? 'Administrator' : (${user.type} ?: 'Unknown'))


  1. 常用th標簽有哪些?

關鍵字功能介紹案例
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}">conten</p>
th:object替換對象<div th:object="${session.user}">
th:value屬性賦值<input th:value="${user.name}" />
th:with變量賦值運算<div th:with="isEven=${prodStat.count}%2==0"></div>
th:style設置樣式th:
th:onclick點擊事件th:onclick="'getCollect()'"
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:caseth:switch的一個分支<p th:case="'admin'">User is an administrator</p>
th:fragment布局標簽,定義一個代碼片段,方便其它地方引用<div th:fragment="alert">
th:include布局標簽,替換內容到引入的文件<head th:include="layout :: htmlhead" th:with="title='xx'"></head> />
th:replace布局標簽,替換整個標簽到引入的文件<div th:replace="fragments/header :: title"></div>
th:selectedselected選擇框 選中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刪除某個屬性<tr th:remove="all"> 1.all:刪除包含標簽和所有的孩子。2.body:不包含標記刪除,但刪除其所有的孩子。3.tag:包含標記的刪除,但不刪除它的孩子。4.all-but-first:刪除所有包含標簽的孩子,除了第一個。5.none:什么也不做。這個值是有用的動態評估。
th:attr設置標簽屬性,多個屬性可以用逗號分隔比如th:attr="src=@{/image/aa.jpg},title=#{logo}",此標簽不太優雅,一般用的比較少。

還有非常多的標簽,這里只列出最常用的幾個,由于一個標簽內可以包含多個th:x屬性,其生效的優先級順序為:

include,each,if/unless/switch/case,with,attr/attrprepend/attrappend,value/href,src ,etc,text/utext,fragment,remove。
  1. 幾種常用的使用方法

  • 賦值、字符串拼接

<p  th:text="${collect.description}">description</p>
<span th:text="'Welcome to our application, ' + ${user.name} + '!'">

字符串拼接還有另外一種簡潔的寫法

<span th:text="|Welcome to our application, ${user.name}!|">
  • 條件判斷 if/Unless

Thymeleaf中使用th:if和th:unless屬性進行條件判斷,下面的例子中,<a>標簽只有在th:if中條件成立時才顯示:

<a th:if="${myself=='yes'}" > </i> </a>
<a th:unless=${session.user != null} th:href="@{/login}" >Login</a>

th:unless 于 th:if 恰好相反,只有表達式中的條件不成立,才會顯示其內容。 也可以使用 (if) ? (then) : (else)這種語法來判斷顯示的內容

  • for循環

<tr  th:each="collect,iterStat : ${collects}"> 
   <th scope="row" th:text="${collect.id}">1</th>
   <td >
      <img th:src="${collect.webLogo}"/>
   </td>
   <td th:text="${collect.url}">Mark</td>
   <td th:text="${collect.title}">Otto</td>
   <td th:text="${collect.description}">@mdo</td>
   <td th:text="${terStat.index}">index</td>
</tr>

iterStat稱作狀態變量,屬性有:

- index:當前迭代對象的 index(從0開始計算)
- count: 當前迭代對象的 index(從1開始計算)
- size:被迭代對象的大小
- current:當前迭代變量
- even/odd:布爾值,當前循環是否是偶數/奇數(從0開始計算)
- first:布爾值,當前循環是否是第一個
- last:布爾值,當前循環是否是最后一個
  • URL

URL 在 Web 應用模板中占據著十分重要的地位,需要特別注意的是 Thymeleaf 對于 URL 的處理是通過語法 @{...} 來處理的。 如果需要 Thymeleaf 對 URL 進行渲染,那么務必使用 th:href,th:src 等屬性,下面是一個例子

<!-- Will produce 'http://localhost:8080/standard/unread' (plus rewriting) -->
 <a  th:href="@{/standard/{type}(type=${type})}">view</a>

<!-- Will produce '/gtvg/order/3/details' (plus rewriting) -->
<a href="details.html" th:href="@{/order/{orderId}/details(orderId=${o.id})}">view</a>

設置背景

<div th:></div>

根據屬性值改變背景

 <div class="media-object resource-card-image"  
 th: ></div>

幾點說明:

- 上例中 URL 最后的(orderId=${o.id}) 表示將括號內的內容作為 URL 參數處理,
該語法避免使用字符串拼- 接,大大提高了可讀性
- @{...}表達式中可以通過{orderId}訪問 Context 中的 orderId 變量
- @{/order}是 Context 相關的相對路徑,在渲染時會自動添加上當前 Web 應用的 Context 名字,
假設 context 名字為 app,那么結果應該是 /app/order
  • 內聯js

內聯文本:[[…]] 內聯文本的表示方式,使用時,必須先用th:inline="text/javascript/none"激活,th:inline可以在父級標簽內使用,甚至作為 body 的標簽。內聯文本盡管比th:text的代碼少,不利于原型顯示。

<script th:inline="javascript">
/*<![CDATA[*/
...
var username = /*[[${sesion.user.name}]]*/ 'Sebastian';
var size = /*[[${size}]]*/ 0;
...
/*]]>*/
</script>

js 附加代碼:

/*[+
var msg = 'This is a working application';
+]*/

js 移除代碼:

/*[- */
var msg = 'This is a non-working template';
/* -]*/
  • 內嵌變量

為了模板更加易用,Thymeleaf 還提供了一系列 Utility 對象(內置于 Context 中),可以通過 # 直接訪問:

dates : java.util.Date的功能方法類。
calendars : 類似#dates,面向java.util.Calendar
numbers : 格式化數字的功能方法類
strings : 字符串對象的功能類,contains,startWiths,prepending/appending等等。
objects: 對objects的功能類操作。
bools: 對布爾值求值的功能方法。
arrays:對數組的功能類方法。
lists: 對lists功能類方法
sets
maps

下面用一段代碼來舉例一些常用的方法:

dates

/*
 * Format date with the specified pattern
 * Also works with arrays, lists or sets
 */
${#dates.format(date, 'dd/MMM/yyyy HH:mm')}
${#dates.arrayFormat(datesArray, 'dd/MMM/yyyy HH:mm')}
${#dates.listFormat(datesList, 'dd/MMM/yyyy HH:mm')}
${#dates.setFormat(datesSet, 'dd/MMM/yyyy HH:mm')}

/*
 * Create a date (java.util.Date) object for the current date and time
 */
${#dates.createNow()}

/*
 * Create a date (java.util.Date) object for the current date (time set to 00:00)
 */
${#dates.createToday()}

strings

/*
 * Check whether a String is empty (or null). Performs a trim() operation before check
 * Also works with arrays, lists or sets
 */
${#strings.isEmpty(name)}
${#strings.arrayIsEmpty(nameArr)}
${#strings.listIsEmpty(nameList)}
${#strings.setIsEmpty(nameSet)}

/*
 * Check whether a String starts or ends with a fragment
 * Also works with arrays, lists or sets
 */
${#strings.startsWith(name,'Don')}                  // also array*, list* and set*
${#strings.endsWith(name,endingFragment)}           // also array*, list* and set*

/*
 * Compute length
 * Also works with arrays, lists or sets
 */
${#strings.length(str)}

/*
 * Null-safe comparison and concatenation
 */
${#strings.equals(str)}
${#strings.equalsIgnoreCase(str)}
${#strings.concat(str)}
${#strings.concatReplaceNulls(str)}

/*
 * Random
 */
${#strings.randomAlphanumeric(count)}

三、使用Thymeleaf布局

Spring Boot 2.0 將布局單獨提取了出來,需要單獨引入依賴:thymeleaf-layout-dialect。

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
<dependency>
    <groupId>nz.net.ultraq.thymeleaf</groupId>
    <artifactId>thymeleaf-layout-dialect</artifactId>
</dependency>

定義代碼片段

<footer th:fragment="copy"> 
&copy; 2019
</footer>

在頁面任何地方引入:

<body>
    <div th:insert="layout/copyright :: copyright"></div>
    <div th:replace="layout/copyright :: copyright"></div>
</body>

th:insert 和 th:replace 區別,insert 只是加載,replace 是替換。Thymeleaf 3.0 推薦使用 th:insert 替換 2.0 的 th:replace。

返回的 HTML 如下:

<body> 
   <div> &copy; 2019 </div> 
  <footer>&copy; 2019 </footer> 
</body>

下面是一個常用的后臺頁面布局,將整個頁面分為頭部,尾部、菜單欄、隱藏欄,點擊菜單只改變 content 區域的頁面

<body class="layout-fixed">
  <div th:fragment="navbar"  class="wrapper"  role="navigation">
	<div th:replace="fragments/header :: header">Header</div>
	<div th:replace="fragments/left :: left">left</div>
	<div th:replace="fragments/sidebar :: sidebar">sidebar</div>
	<div layout:fragment="content" id="content" ></div>
	<div th:replace="fragments/footer :: footer">footer</div>
  </div>
</body>

任何頁面想使用這樣的布局值只需要替換中見的 content 模塊即可

<html xmlns:th="http://www.thymeleaf.org" layout:decorator="layout">
 <body>
    <section layout:fragment="content">
  ...

也可以在引用模版的時候傳參

<head th:include="layout :: htmlhead" th:with="title='Hello'"></head>

layout 是文件地址,如果有文件夾可以這樣寫fileName/layout:htmlhead,htmlhead 是指定義的代碼片段 如th:fragment="copy"

以上就是SpringBoot 中Thymeleaf如何使用,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

定西市| 中宁县| 芮城县| 上林县| 浦县| 周口市| 余江县| 肥乡县| 永靖县| 临海市| 邯郸市| 定兴县| 山东省| 阿拉善右旗| 响水县| 平利县| 诸暨市| 景洪市| 乌拉特中旗| 卓尼县| 元氏县| 延吉市| 柳江县| 定结县| 司法| 翁牛特旗| 安庆市| 龙川县| 建阳市| 咸丰县| 东山县| 阿城市| 本溪市| 灵石县| 祁连县| 陆丰市| 依兰县| 榆中县| 宁南县| 新干县| 乌鲁木齐市|