我有UTC格式的结束日期时间,我正在与我的服务器上的当前时间进行比较。我想检查时差应该是5分钟。但我总是得到巨大的时差。
console.log('utc format... ', currentDate, slot.endTimeWithDuration);
// log -> utc format... moment("2019-11-30T10:16:00.002") 2019-11-30T16:40:00Z
console.log('diff.... ', moment(slot.endTimeWithDuration).diff(currentDate,'minutes'))
// diff.... 383
我该如何解决这个问题?
1条答案
按热度按时间bttbmeg01#
请尝试以下内容:
或者你也可以让它更简单,如下面的例子: