search

Home  >  Q&A  >  body text

angular.js - angular $interval怎么在一个按钮上实现开始定时和结束定时

我代码逻辑如下,想要实现:

  1. 点击查询按钮,开启定时,按钮文案变成停止查询,

  2. 点击停止查询,取消定时

$scope.submitRequest = function () {
    if ($scope.onlyButton == "查询") {
         $scope.onlyButton = "停止查询";
            $interval(function()
                {
                    //具体方法
                }
                ,5000);
            }
    else{
         setTimeout(function(){
            $scope.onlyButton = "查询";
            $interval.cancel(stop);
            },0)
        };
    }
    

但是没有成功取消定时,求帮忙...

怪我咯怪我咯2744 days ago504

reply all(2)I'll reply

  • 天蓬老师

    天蓬老师2017-05-15 17:13:04

    reply
    0
  • 淡淡烟草味

    淡淡烟草味2017-05-15 17:13:04

    LZ’s code can completely make a status mark outside, for example:

    var interval;
    $scope.startStatus = false;
    
    $scope.submitRequest = function(){
    
        if( !$scope.startStatus ){
            interval = $interval(...);
        } else {
            $interval.cancel(interval);  
        }
        
        $scope.startStatus = !$scope.startStatus;
        
    }
    

    Then use it directly in VIEW like this:

    <button ng-bind=" !startStatus ? '查询' : '停止查询' "></button>
    

    I think it’s better to write like this~

    reply
    0
  • Cancelreply