我知道我可以使用momentjs做任何事情,还可以做一些涉及日期的事情。但是令人尴尬的是,我很难去做一件看起来很简单的事情:得到两次之间的差。
例:
var now = "04/09/2013 15:00:00";
var then = "04/09/2013 14:20:30";
//expected result:
"00:39:30"
我试过的
var now = moment("04/09/2013 15:00:00");
var then = moment("04/09/2013 14:20:30");
console.log(moment(moment.duration(now.diff(then))).format("hh:mm:ss"))
//outputs 10:39:30
我不明白那里的“ 10”是什么。我住在巴西,所以如果相关的话,我们是utc-0300。
结果moment.duration(now.diff(then))
是持续时间正确的内部值:
days: 0
hours: 0
milliseconds: 0
minutes: 39
months: 0
seconds: 30
years: 0
所以,我想我的问题是:如何将momentjs持续时间转换为时间间隔?我肯定可以用
duration.get("hours") +":"+ duration.get("minutes") +:+ duration.get("seconds")
但是我觉得我完全没有什么更优雅的东西。
更新
看起来更近,在上面的示例中now
是:
Tue Apr 09 2013 15:00:00 GMT-0300 (E. South America Standard Time)…}
并且moment(moment.duration(now.diff(then)))
是:
Wed Dec 31 1969 22:39:30 GMT-0200 (E. South America Daylight Time)…}
我不确定为什么第二个值是夏令时(-0200)...但是我确定我不喜欢日期:(
更新2
好吧,该值为-0200,可能是因为1969年12月31日是使用夏令时的日期。