警告
本文最后更新于 2022-11-22 22:29,文中内容可能已过时。
作者:veryCold
链接:https://juejin.cn/post/7099718143303483429
来源:稀土掘金
安装
1
2
| npm install moment --save // npm
yarn add moment // Yarn
|
使用
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)
}
|
1
2
3
4
| export function localToUtc(date) {
const fmt = 'YYYY-MM-DD HH:mm:ss'
return moment(date, fmt).utc().format(fmt)
}
|