我遇到DateTime转换问题。我有变量表示DateTime,以毫秒为单位。如果我打印它们,我会得到这个值:
console.log(test1343[0][0].date);
console.log(test1343[0][1].date);
1475676478000
1475676471000
现在,如果我将这些值转换为日期:
console.log(new Date(test1343[0][0].date));
console.log(new Date(test1343[0][1].date));
我明白了:
Wed Oct 05 2016 16:07:58 GMT + 0200
Wed Oct 05 2016 16:07:51 GMT + 0200
现在,如果我将这些值转换为JSON:
console.log(temp1.toJSON());
console.log(temp2.toJSON());
我会有两个小时的时间转移。
2016-10-05T14:07:58.000Z
2016-10-05T14:07:51.000Z
有人可以告诉我如何删除此时移吗?
Gz Markus