小时数
dayjs.duration().hours();
dayjs.duration().asHours();
与持续时间的其他获取器一样,dayjs.duration().hours()
获取小时数 (0 - 23)。
¥As with the other getters for durations, dayjs.duration().hours()
gets the hours (0 - 23).
dayjs.duration().asHours()
获取持续时间的长度(以小时为单位)。
¥dayjs.duration().asHours()
gets the length of the duration in hours.