運用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