JS中日期字符串格式化

* 如果想将日期字符串格式化,需先将其转换为日期类型Date。

在*.js文件中定义并添加过滤器:

Date.prototype.format = function (format) {
	    var date = {
	    "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+)/i.test(format)) {
	         format = format.replace(RegExp.$1, (this.getFullYear() + '').substr(4 - RegExp.$1.length));
	     }
     for (var k in date) {
	         if (new RegExp("(" + k + ")").test(format)) {
	             format = format.replace(RegExp.$1, RegExp.$1.length == 1
	                            ? date[k] : ("00" + date[k]).substr(("" + date[k]).length));
	        }
     }
	    return format;
 }



//过滤器,用于格式化获取的字符串日期
vx.module("ibsapp").filter("data_format",[function(){
	return function(input_data){
		return new Date(input_data).format('yyyy-MM-dd hh:mm:ss');
		
	};
}]);

在Html:

{{item.dataTime | data_format}}

 

你可能感兴趣的:(js)