首页 > 技术文章 > 使用 Moment 转换时间戳和日期

yinyuxing 2021-04-14 10:26 原文

日期 to 时间戳

date.valueOf() // date 是 moment 实例

时间戳 to 日期

import moment from 'moment'

moment(timestamp).format()

推荐阅读