gpt4 book ai didi

javascript - moment.js 以毫秒为单位获取当前时间?

转载 作者:IT王子 更新时间:2023-10-29 02:54:58 28 4
gpt4 key购买 nike

var timeArr = moment().format('HH:mm:ss').split(':');

var timeInMilliseconds = (timeArr[0] * 3600000) + (timeArr[1] * 60000);

此解决方案有效,对其进行测试,但我宁愿只使用 moment api 而不是使用我自己的代码。

此代码以毫秒为单位返回 TODAYS 时间。我需要它在几毫秒内调用另一个函数...不能使用纪元。需要以毫秒为单位格式化今天的时间。上午 9:00 = 3.24e+7 毫秒晚上 9:00 = 6.84e+7 毫秒。

最佳答案

来自文档: http://momentjs.com/docs/#/parsing/unix-timestamp-milliseconds/

所以使用其中之一:


时刻(...).valueOf()

解析预先存在的日期并将表示形式转换为 unix 时间戳


moment().valueOf()

当前的unix时间戳

关于javascript - moment.js 以毫秒为单位获取当前时间?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39980722/

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