NodeJS 如何通过moment.js显示GMT时间戳

h7wcgrx3  于 2023-03-22  发布在  Node.js
关注(0)|答案(2)|浏览(143)

我需要通过moment.js获取UTC时间戳,我写了如下代码
const time = moment().utc().unix();console.log(time);
但是它没有工作,而是显示本地时间,moment.js的文档还说如果我使用unix(),它将在本地模式下创建。
如果我想在时间戳中显示UTC时间,而不需要额外的功能支持,我该怎么做?

rdlzhqv9

rdlzhqv91#

为什么要使用moment?只要使用内置的date对象就可以了

let date = new Date();
console.log(date.toUTCString());
gblwokeq

gblwokeq2#

//moment.utc();

const utc = moment.utc();
utc.format()
utc.valueOf()

相关问题