欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

中国标准时间转为时间轴

程序员文章站 2022-03-30 09:04:08
...
let time = new Date(); // Mon Jun 03 2019 15:56:16 GMT+0800 (中国标准时间)
let date = time.getFullYear() + '-' + (time.getMonth() + 1) + '-' + time.getDate() + ' ' + time.getHours() + ':' + time.getMinutes() + ':' + time.getSeconds()
console.log(date )  //2019-6-3 15:56:16