gpt4 book ai didi

从现在到特定小时的 Momentjs 秒

转载 作者:行者123 更新时间:2023-12-04 13:19:20 47 4
gpt4 key购买 nike

我需要获得从现在到今天的特定小时的秒数。

moment().diff(moment().hour(23), 'seconds');

精度总是以小时为单位,我需要以秒为单位。

例如,如果现在是 15:24。我得到28800。

最佳答案

moment()是当前时间,所以如果当前时间是 15:24:32 moment().hour(23)返回 23:24:32。您需要将分钟和秒设置为 0 以获取 15:24:32 和 23:00:00 之间的差异。

这个
moment().diff(moment().hour(23).minute(0).second(0), 'seconds');
当前时间为 15:24:32 时返回 -27328 秒

关于从现在到特定小时的 Momentjs 秒,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22353009/

47 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com