thymeleaf 的使用 二 基本語法

2022-07-25 17:51:36 字數 981 閱讀 4058

在html檔案中, 首先匯入thymeleaf的命名空間

<

html

lang

="en"

xmlns:th

="">

然後先感受一下thymeleaf的語法--he:

先在controller中配置:

1

@controller

2public

class

hellocontroller

10 }

html檔案**如下:

1

doctype html

>

2<

html

lang

="en"

xmlns:th

="">

3<

head

>

4<

meta

charset

="utf-8"

>

5<

title

>success

title

>

6head

>

7<

body

>

8<

h2>成功!!!

h2>910

<

div

th:text

="$"

>這是顯示的歡迎資訊

div>

1112

body

>

13html

>

啟動專案後瀏覽器訪問: localhost:8080/success, 將返回:

可以看見controller中的資料傳到了html中, 可以通過這種方式將後台的資料在前端顯示

thymeleaf模板的使用

1.th eath 迭代方法 作用 遍歷 類似於 c foreach 例項 是後端傳過來的值 list,liststat td td td 0?女 男 td td 0?女 男 td td td td 這裡會輸出他的索引 0,1,2 之類的資料 tr 擴充套件 獲取迭代中的索引和其他相應的值 注意 上...

Thymeleaf 基本用法總結

一 引用命名空間 在html中引入此命名空間,可避免編輯器出現html驗證錯誤,雖然加不加命名空間對thymeleaf的功能沒有任何影響。二 輸出內容 2.1 welcome to our grocery store 說明 1.th text 用來將內容輸出到所在標籤的body中。2.用來引入資料h...

Thymeleaf 基本用法總結

thymeleaf 基本用法總結 一 引用命名空間 在html中引入此命名空間,可避免編輯器出現html驗證錯誤,雖然加不加命名空間對thymeleaf的功能沒有任何影響。二 輸出內容 2.1 welcome to our grocery store 說明 1.th text 用來將內容輸出到所在標...