thymeleaf中的日期格式化
Posted Beyrl.pan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了thymeleaf中的日期格式化相关的知识,希望对你有一定的参考价值。
本篇介绍些thymeleaf中的日期格式化的方法:
1.用#dates.format来解决:
<span th:text="${#dates.format(user.date, ‘yyyy-MM-dd‘)}">4564546</span>
或者
<span th:text="${#dates.format(billingForm.startTime,‘yyyy-MM-dd HH:mm:ss‘)}">4564546</span>
2.在当前的项目中还有这样一种情况,就是无法直接把需要thy表达式的放在标签里,因为他可能是在js里面拼接的。如下:
<script th:inline="javascript"> $(function (){ Date.prototype.Format = function (fmt) { //将蓝括号的这段要放在调用时间的上面, var o = { "M+": this.getMonth() + 1, //月份 "d+": this.getDate(), //日 "h+": this.getHours(), //小时 "m+": this.getMinutes(), //分 "s+": this.getSeconds(), //秒 "q+": Math.floor((this.getMonth() + 3) / 3), //季度 "S": this.getMilliseconds() //毫秒 }; if (/(y+)/.test(fmt)) fmt = fmt.replace(RegExp.$1, (this.getFullYear() + "").substr(4 - RegExp.$1.length)); for (var k in o) if (new RegExp("(" + k + ")").test(fmt)) fmt = fmt.replace(RegExp.$1, (RegExp.$1.length == 1) ? (o[k]) : (("00" + o[k]).substr(("" + o[k]).length))); return fmt; } $.each([[${cctwps}]], function (){ var course = this.course, courseClass = this.courseClass, time = ‘‘; //班级别名,班级地址,开课时间,截止时间 if(course.applyEndDate != null){//报名中 截止报名时间 if(course.statusMark == 1){ time = ‘<span>‘+ ‘<span>‘+course.applyEndDate.substring(0,10)+‘截止报名</span>‘+ ‘</span>‘; }else{ time = ‘<span>‘+ ‘<span>‘+new Date(course.startTime).Format("yyyy-MM-dd hh:mm")+‘开课</span>‘+ ‘</span>‘; } }else{ time = ‘‘; } }); }) </script>
这里面course.startTime 就是你要拼接放进去的数据。
如果还有其它方法如果我找到了,会有后续更新。。。
以上是关于thymeleaf中的日期格式化的主要内容,如果未能解决你的问题,请参考以下文章
当我在括号中调用它时,Thymeleaf 不会解析我的应用程序中的片段。这是为啥?
springboot Thymeleaf中格式化jsr310新日期时间类(LocalDateTime,LocalDate)
使用片段时 Intellij 无法正确识别 Thymeleaf 模型变量