1. 程式人生 > >thymeleaf 格式化時間

thymeleaf 格式化時間

-s strong 表達 mage 效果 tex pan html date

運用Thymeleaf模板後,前臺的時間顯示發生變化,和數據庫不一致

HTML頁面中格式如下:

<td th:text="${fleeceRecord.cashmereDate}"></td>
顯示效果如下:

技術分享圖片

解決辦法:Thymeleaf模板時間格式表達式 ${#dates.format(date, ‘dd/MMM/yyyy HH:mm‘)}

<td th:text="${#dates.format(fleeceRecord.cashmereDate,‘yyyy-MM-dd‘)}"></td>

如圖

技術分享圖片

註釋:如果只要年 如下:<td th:text="${#dates.format(fleeceRecord.cashmereDate,‘yyyy‘)}"></td> 結果:2018

thymeleaf 格式化時間