记录一下,方便自己以后使用,嘻嘻
把 这个时间 2020-12-16T17:28:21.000+0000变成 yyyy-MM-dd HH:mm:ss
formatTime(date) {
var mydate = new Date(date).toJSON();
return new Date(+new Date(mydate) + 8 * 3600 * 1000)
.toISOString()
.replace(/T/g, " ")
.replace(/\.[\d]{3}Z/, "");
}
网友评论