我需要通过moment.js获取UTC时间戳,我写了如下代码const time = moment().utc().unix();console.log(time);但是它没有工作,而是显示本地时间,moment.js的文档还说如果我使用unix(),它将在本地模式下创建。如果我想在时间戳中显示UTC时间,而不需要额外的功能支持,我该怎么做?
rdlzhqv91#
为什么要使用moment?只要使用内置的date对象就可以了
let date = new Date(); console.log(date.toUTCString());
gblwokeq2#
//moment.utc(); const utc = moment.utc(); utc.format() utc.valueOf()
2条答案
按热度按时间rdlzhqv91#
为什么要使用moment?只要使用内置的date对象就可以了
gblwokeq2#