我尝试使用时刻时区修改时间戳时区,并且我想使用应用的偏移量获取修改后的值
var newTimestamp = momentTz.tz(timestamp, 'Europe/Berlin')
所以这就是我尝试的
var results = {};
for (var timestamp in timestamps) {
var commitCount = timestamps[timestamp];
console.log(typeof timestamp)
console.log(timestamp)
console.log(moment(timestamp).format())
//console.log(moment.tz(timestamp, 'Europe/Berlin'))
//results[ moment.tz(timestamp, 'Europe/Berlin')] = commitCount;
};
这是日志中的一个片段
string
1528063200
Invalid date
如何获得新的时间戳?