[thymeleaf]springboot整合thymeleaf, html使用預置方法

le.li發表於2024-05-09

開啟依賴的thymeleaf的jar包,看到很多thymeleaf expression(表示式),這些都是預置的

html body體內,使用方法:

以571行,Dates舉例,開啟org.thymeleaf.expression.Dates類

找到一個任意方法呼叫,如:

舉例:

html body體內輸入:

<span th:text="${#dates.createNow()}"></span>
=[[${#dates.createNow()}]]

等號前後兩種方法都可以用,顯示效果:

Thu May 09 00:08:27 CST 2024=Thu May 09 00:08:27 CST 2024

另外,上下文,也可以用request中獲取,方法同上




相關文章