[個人筆記]
在使用thymeleaf的時候,為了快捷,可以做一下配置
首先是引包,然後在配置檔案加上如下配置
spring.thymeleaf.cache=false
spring.thymeleaf.check-template-location=true
spring.thymeleaf.content-type=text/html; charset=utf-8
spring.thymeleaf.enabled=true
spring.thymeleaf.encoding=utf-8
spring.thymeleaf.prefix=classpath:templates/
spring.thymeleaf.suffix=.html
使用官方預設的掃瞄路徑會使之後的工作更加簡單
#靜態資源存放的地方
classpath:/static
所以我們可以將靜態檔案放到相應的檔案目錄下,這樣引用檔案的時候會簡單 thymeleaf模板的使用
1.th eath 迭代方法 作用 遍歷 類似於 c foreach 例項 是後端傳過來的值 list,liststat td td td 0?女 男 td td 0?女 男 td td td td 這裡會輸出他的索引 0,1,2 之類的資料 tr 擴充套件 獲取迭代中的索引和其他相應的值 注意 上...
thymeleaf模板使用小記
1 遍歷物件陣列 取物件key,可通過itemstat.current.key 取物件資料,可通過itemstat.current.value 狀態變數有以下幾個屬性 itemstat index 當前迭代物件的index 從0開始計算 count 當前迭代物件的index 從1開始計算 size ...
thymeleaf模板引擎
thymeleaf 模組引擎類似於jsp的el表示式 1.引入thymeleaf org.springframework.boot spring boot starter thymeleaf 3.0.11.release 2.1.1 2.thymeleaf的使用 語法只要我們把html檔案放在cla...