秒数
要获取持续时间中的秒数,请使用 dayjs.duration().seconds()
。
¥To get the number of seconds in a duration, use dayjs.duration().seconds()
.
它将返回 0 到 59 之间的数字。
¥It will return a number between 0 and 59.
dayjs.duration(500).seconds(); // 0
dayjs.duration(1500).seconds(); // 1
dayjs.duration(15000).seconds(); // 15
如果你想要持续时间的长度(以秒为单位),请改用 dayjs.duration().asSeconds()
。
¥If you want the length of the duration in seconds, use dayjs.duration().asSeconds()
instead.
dayjs.duration(500).asSeconds(); // 0.5
dayjs.duration(1500).asSeconds(); // 1.5
dayjs.duration(15000).asSeconds(); // 15