angular js在间隔上更新json并更新视图

时间:2014-04-20 11:45:23

标签: javascript json angularjs

我一直试图在互联网上找到一个解决方案,以便能够在设定的间隔时间更新我的$ http json请求,同时让它用新数据更新我的绑定。

我已经看过一些使用$ timeout的例子,但是还没有能够让它工作,只是想知道最好的方法是什么。由于我无法提出新请求,因此我无法解决新数据下载后更新视图的问题。

这是我目前的版本。

app.js文件,这只显示了json的初始提取。

    var myApp = angular.module('myApp', ['ngRoute']);

    myApp.controller('MainCtrl', ['$scope', '$http',
        function($scope, $http, $timeout) {
            $scope.Days = {};

            $http({
                method: 'GET',
                url: "data.json"
            })
                .success(function(data, status, headers, config) {
                    $scope.Days = data;
                })
                .error(function(data, status, headers, config) {
                    // something went wrong :(
                });

        }
    ]);

HTML设置:

<ul ng-controller="MainCtrl">
  <li class="date" ng-repeat-start="day in Days">
    <strong>>{{ day.Date }}</strong>
  </li>

  <li class="item" ng-repeat-end ng-repeat="item in day.Items">
    <strong>>{{ item.Name }}</strong>
  </li>
</ul>

1 个答案:

答案 0 :(得分:9)

我会使用$timeout

如您所知$timeout回复承诺。因此,当承诺得到解决后,我们可以再次调用方法myLoop

在下面的示例中,我们每隔10秒调用一次http。

var timer;

function myLoop() {
    // When the timeout is defined, it returns a
    // promise object.
    timer = $timeout(function () {
        console.log("Timeout executed", Date.now());
    }, 10000);

    timer.then(function () {
        console.log("Timer resolved!");

        $http({
            method: 'GET',
            url: "data.json"
        }).success(function (data, status, headers, config) {
            $scope.Days = data;
            myLoop();
        }).error(function (data, status, headers, config) {
            // something went wrong :(
        });
    }, function () {
        console.log("Timer rejected!");
    });

}

myLoop();

作为旁注:

当控制器被销毁时,请务必致电$timeout.cancel( timer );

// When the DOM element is removed from the page,
// AngularJS will trigger the $destroy event on
// the scope. 
// Cancel timeout
$scope.$on("$destroy", function (event) {
    $timeout.cancel(timer);
});

演示 Fiddle