moment -- react中处理时间的库
官网地址
http://momentjs.cn
安装
npm install moment --save
官网里写的挺详细的也有好多用法,但是没看到时间戳转日期的例子
console.log(moment.unix(1481523462171 / 1000).format("YYYY-MM-DD HH:mm:ss"));
console.log(moment(1481523462171).format("YYYY-MM-DD HH:mm:ss"));
/*两个输出的值是一致的 2016-12-12 14:17:42*/
console.log(moment().toDate().getTime());
console.log(moment().valueOf());
/*两个输出的值是一致的,精确到毫秒的时间截*/
console.log(moment().unix());
/*精期到秒的时间截*/
以上是时间戳转日期的例子,亲测好用
更多例子在这哥们的简书(http://www.jianshu.com/p/20be2c7e1a5b)
网友评论