我正在按照这些说明 https://stackoverflow.com/a/15012173/3808307但我真的不明白。现在是6月4日在我的时区和UTC我正在做timeRef.current = new Date()然后console.log(timeRef.current.getUTCFullYear()) // returns 2020
console.log(timeRef.current.getUTCMonth()) // returns 5为什么我的月份是第5个月?如何以 UTC 单声道获得 YYYMMDD-HHMMSS 毫秒?例如,当它是2月29日时,我不想有错误,就像这里一样 Javascript 日期 - 设置UTC月份我需要一种精确的转换方式谢谢
4 回答
互换的青春
TA贡献1797条经验 获得超6个赞
这就是你需要的!
var timeRef = new Date()
console.log(timeRef.getUTCFullYear()) // returns 2020
console.log(timeRef.getUTCMonth()+1) // returns 6
添加回答
举报
0/150
提交
取消