我正在尝试使用 Node.js 获取当前时间戳
我试过了:
var t = Date.now();
console.log(t);
和
var t = new Date().getTime();
console.log(t);
无论哪种方式都返回确切 1 小时前的时间戳。
例如,当前时间是
美国东部时间 10 月 29 日晚上 11:20
但是 Node.js 返回
美国东部时间 10 月 29 日晚上 10:20
我使用了错误的功能吗?在 Node.js 中获取当前时间戳的正确方法是什么?