我正在为事件页面制作倒数计时器,为此我使用了 moment js。
这是小提琴。
我正在计算事件日期和当前日期(时间戳)之间的日期差异,然后使用 moment js 中的“持续时间”方法。但剩下的时间并没有像预期的那样到来。
预期- 00:30m:00s
实际- 5h:59m:00s
代码 :
<script>
  $(document).ready(function(){
    var eventTime = '1366549200';
    var currentTime = '1366547400';
    var time = eventTime - currentTime;
    var duration = moment.duration(time*1000, 'milliseconds');
    var interval = 1000;
    setInterval(function(){
      duration = moment.duration(duration.asMilliseconds() - interval, 'milliseconds');
      $('.countdown').text(moment(duration.asMilliseconds()).format('H[h]:mm[m]:ss[s]'));
    }, interval);
  });
  </script>
我阅读了 momentjs 文档以找出问题所在,但没有运气。
谢谢你的时间。
更新 :
我最终这样做:
<script>
  $(document).ready(function(){
    var eventTime = '1366549200';
    var currentTime = '1366547400';
    var leftTime = eventTime - currentTime;//Now i am passing the left time from controller itself which handles timezone stuff (UTC), just to simply question i used harcoded values.
    var duration = moment.duration(leftTime, 'seconds');
    var interval = 1000;
    setInterval(function(){
      // Time Out check
      if (duration.asSeconds() <= 0) {
        clearInterval(intervalId);
        window.location.reload(true); #skip the cache and reload the page from the server
      }
      //Otherwise
      duration = moment.duration(duration.asSeconds() - 1, 'seconds');
      $('.countdown').text(duration.days() + 'd:' + duration.hours()+ 'h:' + duration.minutes()+ 'm:' + duration.seconds() + 's');
    }, interval);
  });
  </script>