thymeleaf中的日期格式化

本篇介紹些thymeleaf中的日期格式化的方法:javascript

1.用#dates.format來解決:java

<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裏面拼接的。以下:app

 <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 就是你要拼接放進去的數據。this

若是還有其它方法若是我找到了,會有後續更新。。。spa

相關文章
相關標籤/搜索