使用moment将UTC时间转本地时间

警告
本文最后更新于 2022-11-22 22:29,文中内容可能已过时。

作者:veryCold 链接:https://juejin.cn/post/7099718143303483429 来源:稀土掘金

安装

1
2
npm install moment --save   // npm
yarn add moment             // Yarn

使用

  • 将utc时间转为本地时间
1
2
3
4
5
6
7
8
// utils.js
import moment from 'moment'
// 这里date是后端返回的字符串格式,如:2022-05-13 16:31:53
export function utcToLocal(date) {
  const fmt = 'YYYY-MM-DD HH:mm:ss'
  return moment.utc(date).local().format(fmt)
}
  • 将本地时间转为utc时间
1
2
3
4
export function localToUtc(date) {
  const fmt = 'YYYY-MM-DD HH:mm:ss'
  return moment(date, fmt).utc().format(fmt)
}
请我喝杯水
SoulChild 微信号 微信号
SoulChild 微信打赏 微信打赏
0%