我知道我可以使用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))是持续时间正确的内部值:
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是:
now
Tue Apr 09 2013 15:00:00 GMT-0300 (E. South America Standard Time)…}
并且moment(moment.duration(now.diff(then)))是:
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日是使用夏令时的日期。
此方法仅在总持续时间少于24小时时有效:
var now = "04/09/2013 15:00:00"; var then = "04/09/2013 14:20:30"; moment.utc(moment(now,"DD/MM/YYYY HH:mm:ss").diff(moment(then,"DD/MM/YYYY HH:mm:ss"))).format("HH:mm:ss") // outputs: "00:39:30"
如果您有24小时或更长时间,则使用上述方法将小时数重置为零,因此并不理想。
如果您想获得24小时或更长时间的有效回复, 则必须执行以下操作:
var now = "04/09/2013 15:00:00"; var then = "02/09/2013 14:20:30"; var ms = moment(now,"DD/MM/YYYY HH:mm:ss").diff(moment(then,"DD/MM/YYYY HH:mm:ss")); var d = moment.duration(ms); var s = Math.floor(d.asHours()) + moment.utc(ms).format(":mm:ss"); // outputs: "48:39:30"
请注意,我使用utc时间作为快捷方式。你可以拉出来d.minutes()和d.seconds()分开,但你也必须ZEROPAD他们。
d.minutes()
d.seconds()
这是必要的,因为durationmoment.js中当前尚无格式化异议的功能。 在这里已被要求。但是,有一个专门用于此目的的第三方插件称为moment-duration-format:
duration
var now = "04/09/2013 15:00:00"; var then = "02/09/2013 14:20:30"; var ms = moment(now,"DD/MM/YYYY HH:mm:ss").diff(moment(then,"DD/MM/YYYY HH:mm:ss")); var d = moment.duration(ms); var s = d.format("hh:mm:ss"); // outputs: "48:39:30"