/**
* 日期时间格式化 (CST 转化为标准时间可用)
*/
exports.formatDateCst = function(stamp, formatString){
var date = new Date(stamp);
var o = {
'M+': date.getMonth() + 1,
'D+': date.getDate(),
'h+': date.getHours(),
'm+': date.getMinutes(),
's+': date.getSeconds(),
'S' : date.getMilliseconds()
};
if(/(Y+)/.test(formatString)){
formatString = formatString.replace(RegExp.$1, (date.getFullYear() + "").substr(2 - RegExp.$1.length));
}
for(var k in o){
if(new RegExp('(' + k + ')').test(formatString)){
formatString = formatString.replace(RegExp.$1, RegExp.$1.length == 1 ? o[k] : ('00' + o[k]).substr(('' + o[k]).length));
}
}
return formatString;
}
use: formatDateCst(value,'YY-MM-DD hh:mm:ss')