请问在小程序云函数中调用new Date().getTime()
new Date('2020/03/06 23:50:22').getTime()
得到:1583538622000;转北京时间:2020年3月7日7时50分22秒
new Date('2020-03-06 23:50:22').getTime()
还是得到:1583538622000;转北京时间:2020年3月7日7时50分22秒
正确应该:1583509822000;转北京时间:2020年3月6日23时50分22秒
请问需要怎么才能获得不自动增加8小时的时间戳
https://developers.weixin.qq.com/miniprogram/dev/wxcloud/guide/functions/notice.html
云函数中手动调整8*3600*1000