搜尋

首頁  >  問答  >  主體

angular.js - angular 倒數計時 只第一次暫停有效

效果:http://runjs.cn/detail/iyvy6dl7

打開後,第一次點stop是生效的,但開始後再點stop就無效了。

  <p ng-controller="ListController">
        {{ t }}
        <p></p>
        <button type="button" ng-click="stop()">stop</button>
        <button type="button" ng-click="start()">start</button>
  </p>
    'use strict';
    var myModule = angular.module("myModule",[])
    .controller('ListController', ['$interval','$scope', function($interval, $scope){

        var t, isPause, timePromise;

        $scope.t = 100;  

        var runTiming = function(){
          timePromise = $interval(function(){
              $scope.t -= 1;
          }, 1000, 100);
        }

        $scope.stop = function(){
          if(angular.isDefined(timePromise)){
            $interval.cancel(timePromise);
            timePromise = undefined;
            $scope.isPause = true;
          }
        }

        $scope.start = function(){
          if(angular.isDefined(timePromise)) return;
            timePromise = runTiming();
            $scope.isPause = false;
        }

        runTiming();  
      
    }])
过去多啦不再A梦过去多啦不再A梦2797 天前638

全部回覆(1)我來回復

  • 巴扎黑

    巴扎黑2017-05-15 16:59:11

    雷雷

    回覆
    0
  • 取消回覆