thymeleaf標籤總結

2021-08-13 08:40:23 字數 1259 閱讀 3701

# 代表 獲取資源本地化檔案

$ 表示從model裡面獲取

# $這2個可以一起用 比如#} -----這相當於 #的資源本地化檔案中的system.01內容

------request------

th:text=

"$">

th:text=

"$">111

------response------

th:text=

"$">

th:text=

"$">111

------servletcontext-------

th:text=

>

th:text=

>

th:each=

>

th:text=

"$">

-------$和* (變數表示式和星號表示式)---------

th:object=

"$">

th:text=

"*">111

th:text=

"*">222

-------th:if-------

th:if=

"$"

th:each=

"file,iterstat:$"

>

th:text=

"$">01

th:text=

"$">01

-------th:each-------

th:each=

"file,iterstat:$"

>

th:text=

"$">01

th:text=

"$">01

th:text=

"|index: $; count: $; size: $; first: $|"

>

-------表示式功能物件:-------

:text=

"$">

#objects:對objects的功能類操作。

#bools:對布林值求值的功能方法。

#arrays:對陣列的功能類方法。

#lists:對lists功能類方法

#sets

#maps

#aggregates:對陣列或者集合建立聚合的功能方法,

th:text="$)}"

#messages:在變數表示式中獲取外部資訊的功能類方法。

#ids:處理可能重複的id屬性的功能類方法。

thymeleaf常用標籤

1.1 th text 用於文字的顯示,並且可以進行簡單的計算。mlm maliming 2018 16 1.2 th utext 用於html的文字替換,常用於富文字編輯器編輯後的內容顯示到前台頁面上。my name ismaliming 1.3 th if 用於判斷條件,還可以多條件 and,o...

thymeleaf標籤使用

常用th標籤都有那些?關鍵字 功能介紹 案例 th id 替換id th text 文字替換 description th utext 支援html的文字替換 conten th object 替換物件 th value 屬性賦值 th with 變數賦值運算 th style 設定樣式 th st...

Thymeleaf 常用th標籤

頁面引入 thymeleaf標籤庫 zh xmlns th 引入css rel stylesheet 引入js script 一 變數表示式 text name username value beyrl th value 上述 為引用user物件的name屬性值。二 選擇表示式 nationalit...