AngularJS ngcontroller to be reloading data periodically

后端 未结 8 1818
自闭症患者
自闭症患者 2020-12-14 02:17

I have this working implementation af a angularJS app which fetches some links from an URL and paint them. However the links on the URL are being updated constantly, I woul

8条回答
  •  长情又很酷
    2020-12-14 02:49

    While jvandemo's answer will work, I think it can be improved slightly. By using setInterval, it breaks the dependency injection convention that Angular follows and makes unit testing of the controller difficult.

    Angular doesn't currently support setInterval through its built-in services, but you can use the $timeout service to produce the same functionality. I'd change the controller to this:

    app.controller('MainCtrl', function($scope, $http, $timeout) {
    
      // Function to get the data
      $scope.getData = function(){
        $http.get('style.css')
          .success(function(data, status, headers, config) {
    
          // Your code here
          console.log('Fetched data!');
        });
      };
    
      // Function to replicate setInterval using $timeout service.
      $scope.intervalFunction = function(){
        $timeout(function() {
          $scope.getData();
          $scope.intervalFunction();
        }, 1000)
      };
    
      // Kick off the interval
      $scope.intervalFunction();
    
    });
    

提交回复
热议问题