js拡張Date時間を「yyy-M-dd hh:mm:ss」形式の文字列にフォーマットします.

1262 ワード

Dateを拡張して、時間を指定された書式の文字列に変換します.
たとえば:
現在の時間の書式設定を指定します.
var time 1=new Date().Format("yyy-M-dd")/// 2017-11-20
タイムスタンプの書式設定を指定します.
var time 2=new Date(149281964000).Format("yyy-M-dd hh:mm:ss")// 2016-07-23 21:52:44
Date.prototype.Format = function (fmt) { 
    var o = {
        "M+": this.getMonth() + 1, //   
        "d+": this.getDate(), //  
        "h+": this.getHours(), //   
        "m+": this.getMinutes(), //  
        "s+": this.getSeconds() //  
    };
    if (/(y+)/.test(fmt)){ //  y       
	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;
}
//   : 
var time1 = new Date().Format("yyyy-MM-dd");
var time2 = new Date(1469281964000).Format("yyyy-MM-dd hh:mm:ss");
console.log(time1);
console.log(time2);
その中の比較的に古典的なのは0を補う操作で、私達は取り出して包装して方法になることができます.
function padLeftZero(str) {
    return ('00' + str).substr(str.length);
}