1.日期转时间戳 或 时间戳 转 日期
const currentTime =moment(new Date()).format('YYYY-MM-DD hh:mm:ss')
console.log('日期转时间戳')
console.log('当前时间currentTime',currentTime)
console.log('getTime() 时间戳为13位精确到毫秒',new Date(currentTime).getTime())
console.log('getTime()/1000 时间戳为十位 精确到秒',new Date(currentTime).getTime()/1000)
const timestamp = new Date(currentTime).getTime()/1000; //十位时间戳
console.log('时间戳转日期',moment(Number(BigInt(timestamp)) * 1000).format('YYYY-MM-DD HH:mm:ss'))
效果图如下:
2.时间戳[10,13]位的区别
13位的时间戳,其精度是毫秒(ms);
10位的时间戳,其精度是秒(s);
13位数的时间戳转化为10位数的时间戳 ,除以1000;
10位数的时间戳转化为13位数的时间戳 ,乘以1000;
在javascript中, new Date().getTime() 得到的是13位的时间戳。
版权声明:本文为Yujis原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。