Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我尝试以下以毫秒为单位获得时间跨度:
moment(0).minute(10).milliseconds()
这个想法是有一种简单易读的方法将时间跨度转换为毫秒。但不幸的是,这将始终返回0,初始时间。
0
我认为这是你真正想要做的:
moment.duration(10, "minutes").asMilliseconds();
我不知道我是否收到您的问题,但我们可以使用 JavaScript 来获取时间戳
var start = new Date().getTime(); var elapsed = new Date().getTime() - start;