thymeleaf 格式化时间
Posted lst619247
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了thymeleaf 格式化时间相关的知识,希望对你有一定的参考价值。
运用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 格式化时间的主要内容,如果未能解决你的问题,请参考以下文章
Thymeleaf模板格式化LocalDatetime时间格式
springboot Thymeleaf中格式化jsr310新日期时间类(LocalDateTime,LocalDate)