使用DAYJS的两次时间之间的差异

2022-02-28 00:00:00 javascript momentjs dayjs

我有两个时间输入,我想使用day js获得这两个输入之间的差/时间间隔

fromtime = '13:00'
totime = '17:00'

因此以上两项的输出应为4:00小时

我已尝试

console.log(
          dayjs(fromtime).diff(dayjs(totime), "hours")
        );

但未获得预期的输出。


解决方案

我找到了此问题的解决方案。

const fromtime = '11:20'
const totime = '12:30'

const ft = dayjs(`2000-01-01 ${fromtime}`);
const tt = dayjs(`2000-01-01 ${totime}`);
const mins = tt.diff(ft, "minutes", true);
const totalHours = parseInt(mins / 60);
const totalMins = dayjs().minute(mins).$m

这将输出为totalHours = 1totalMins = 10
希望这对某人有帮助。

相关文章