时间格式转换
发布于 23 天前 作者 quanpf2481 542 次浏览 来自 问答

2017-09-07T00:22:55.000Z,这个时间怎么样转换为2017-09-07 00:22:55

4 回复

@imhered 能不能说的具体点,链接里没看到有相关的啊????

moment(“2017-09-07T00:22:55.000Z”).format(“YYYY-MM-DD HH:mm:ss”) moment在线: https://jsfiddle.net/FLhpq/4/

/**
* 格式化日期
*/
formateDateTime = function (dt, fmt) {
let o = {
"M+": dt.getMonth() + 1, //月份
"d+": dt.getDate(), //日
"h+": dt.getHours(), //小时
"m+": dt.getMinutes(), //分
"s+": dt.getSeconds(), //秒
"q+": Math.floor((dt.getMonth() + 3) / 3), //季度
"S": dt.getMilliseconds() //毫秒
};
if (/(y+)/.test(fmt)) fmt = fmt.replace(RegExp.$1, (dt.getFullYear() + "").substr(4 - RegExp.$1.length));
for (let 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;
}
-------------------------------test
console.log(formateDateTime(new Date('2017-09-07T00:22:55.000Z'),'yyyy-MM-dd hh:mm:ss'))



回到顶部