美文网首页
时间格式化

时间格式化

作者: 新苡米 | 来源:发表于2022-03-14 14:55 被阅读0次

2020-02-11T12:24:18.000+0000 转化成正常格式

 renderTime(date) {
                var dateee = new Date(date).toJSON();
                return new Date(+new Date(dateee) + 8 * 3600 * 1000).toISOString().replace(/T/g, ' ').replace(/\.[\d]{3}Z/, '')
            },

相关文章

网友评论

      本文标题:时间格式化

      本文链接:https://www.haomeiwen.com/subject/nhzjdrtx.html