美文网首页
moment解决显示本地时间

moment解决显示本地时间

作者: rainy66 | 来源:发表于2022-11-18 11:26 被阅读0次

背景

项目中后端返回标准时间 2022-11-18 8:00:00,与当前时间差8小时,需要改回北京当前时间

//utils/common.js中
引用moment
import "moment" from moment

export function formatDate(data) {
return moment.utc(data).local().format('YYYY-MM-DD HH:mm:ss)
}

然后在需要的页面上引用这边format的回调函数,把标准时间改成北京本地时间

相关文章

网友评论

      本文标题:moment解决显示本地时间

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