在节点控制台中进行测试:
var moment = require('moment');
// create a new Date-Object
var now = new Date(2013, 02, 28, 11, 11, 11);
// create the native timestamp
var native = Date.UTC(now.getFullYear(), now.getMonth(), now.getDate(), now.getHours(), now.getMinutes(), now.getSeconds());
// create the timestamp with moment
var withMoment = moment.utc(now).valueOf()
// it doesnt matter if i use moment(now).utc().valueOf() or moment().utc(now).valueOf()
// native: 1364469071000
// withMoment: 1364465471000
native === withMoment // false!?!?!
// this returns true!!!
withMoment === now.getTime()
为什么本机与withMoment的时间戳不同?为什么withMoment返回从当前本地时间计算的时间戳?我怎样才能实现那个时刻.utc()返回与Date.UTC()相同的颜色?
答案 0 :(得分:11)
以与moment.utc()
相同的方式致电Date.UTC
:
var withMoment = moment.utc([now.getFullYear(), now.getMonth(), now.getDate(), now.getHours(), now.getMinutes(), now.getSeconds()]).valueOf();
我认为调用moment.utc(now)
会使其假定now
存在于本地时区,并且会先将其转换为UTC,因此存在差异。
答案 1 :(得分:3)
你在做什么基本上就是这个。
var now = new Date(2013, 02, 28, 11, 11, 11);
var native = Date.UTC(2013, 02, 28, 11, 11, 11);
console.log(now === utc); // false
console.log(now - utc); // your offset from GMT in milliseconds
由于now
是在当前时区构建的,native
是以UTC格式构建的,因此它们的偏移量会有所不同。太平洋标准时间上午11点!=格林威治标准时间上午11点。