86

私はAngularJSを学ぼうとしています。毎秒新しいデータを取得する最初の試みはうまくいきました:

'use strict';

function dataCtrl($scope, $http, $timeout) {
    $scope.data = [];

    (function tick() {
        $http.get('api/changingData').success(function (data) {
            $scope.data = data;
            $timeout(tick, 1000);
        });
    })();
};

スレッドを5秒間スリープして低速サーバーをシミュレートすると、UIを更新して別のタイムアウトを設定する前に、応答を待機します。問題は、モジュールの作成にAngularモジュールとDIを使用するように上記を書き直したときです。

'use strict';

angular.module('datacat', ['dataServices']);

angular.module('dataServices', ['ngResource']).
    factory('Data', function ($resource) {
        return $resource('api/changingData', {}, {
            query: { method: 'GET', params: {}, isArray: true }
        });
    });

function dataCtrl($scope, $timeout, Data) {
    $scope.data = [];

    (function tick() {
        $scope.data = Data.query();
        $timeout(tick, 1000);
    })();
};

これは、サーバーの応答が速い場合にのみ機能します。遅延がある場合は、応答を待たずに1秒間に1リクエストをスパム送信し、UIをクリアしているようです。コールバック関数を使う必要があると思います。私は試した:

var x = Data.get({}, function () { });

しかし、エラーが発生しました:「エラー:destination.pushは関数ではありません」これは$ resourceのドキュメントに基づいていましたが、そこにある例を本当に理解していませんでした。

2番目のアプローチを機能させるにはどうすればよいですか?

4

4 に答える 4

116

tickのコールバックで関数を呼び出す必要がありますquery

function dataCtrl($scope, $timeout, Data) {
    $scope.data = [];

    (function tick() {
        $scope.data = Data.query(function(){
            $timeout(tick, 1000);
        });
    })();
};
于 2012-12-02T17:04:41.377 に答える
33

Angularの最近のバージョンでは、サーバーのポーリングで$timeoutよりもうまく機能する$intervalが導入されています。

var refreshData = function() {
    // Assign to scope within callback to avoid data flickering on screen
    Data.query({ someField: $scope.fieldValue }, function(dataElements){
        $scope.data = dataElements;
    });
};

var promise = $interval(refreshData, 1000);

// Cancel interval on page changes
$scope.$on('$destroy', function(){
    if (angular.isDefined(promise)) {
        $interval.cancel(promise);
        promise = undefined;
    }
});
于 2014-01-29T05:23:48.147 に答える
5

これが再帰的ポーリングを使用した私のバージョンです。これは、次のタイムアウトを開始する前にサーバーの応答を待機することを意味します。また、エラーが発生すると、ポーリングは続行されますが、よりリラックスしたマナーで、エラーの期間に応じて行われます。

デモはこちら

ここにそれについてもっと書かれています

var app = angular.module('plunker', ['ngAnimate']);

app.controller('MainCtrl', function($scope, $http, $timeout) {

    var loadTime = 1000, //Load the data every second
        errorCount = 0, //Counter for the server errors
        loadPromise; //Pointer to the promise created by the Angular $timout service

    var getData = function() {
        $http.get('http://httpbin.org/delay/1?now=' + Date.now())

        .then(function(res) {
             $scope.data = res.data.args;

              errorCount = 0;
              nextLoad();
        })

        .catch(function(res) {
             $scope.data = 'Server error';
             nextLoad(++errorCount * 2 * loadTime);
        });
    };

     var cancelNextLoad = function() {
         $timeout.cancel(loadPromise);
     };

    var nextLoad = function(mill) {
        mill = mill || loadTime;

        //Always make sure the last timeout is cleared before starting a new one
        cancelNextLoad();
        $timeout(getData, mill);
    };


    //Start polling the data from the server
    getData();


        //Always clear the timeout when the view is destroyed, otherwise it will   keep polling
        $scope.$on('$destroy', function() {
            cancelNextLoad();
        });

        $scope.data = 'Loading...';
   });
于 2016-08-10T02:02:48.557 に答える
0

$intervalサービスを使用して簡単にポーリングを行うことができます。$intervalに関する詳細なドキュメントは 次のとおりです
https://docs.angularjs.org/api/ng/service/$interval$intervalの使用に関する
問題は、$ httpサービスの呼び出しまたはサーバーの相互作用を行っている場合、および$interval時間より長く遅延した場合です。次に、1つのリクエストが完了する前に、別のリクエストを開始します。
解決策:
1。ポーリングは、シングルビットや軽量のjsonのようにサーバーから取得する単純なステータスである必要があるため、定義された間隔時間より長くかかることはありません。また、この問題を回避するために、間隔の時間を適切に定義する必要があります。
2.何らかの理由でまだ発生している場合は、他のリクエストを送信する前に、前のリクエストが終了したかどうかを示すグローバルフラグを確認する必要があります。その時間間隔を逃しますが、時期尚早にリクエストを送信することはありません。
また、何らかの値の後にポーリングを設定する必要があるしきい値を設定したい場合は、次の方法で行うことができます。
これが実際の例です。ここで詳細に説明されています

angular.module('myApp.view2', ['ngRoute'])
.controller('View2Ctrl', ['$scope', '$timeout', '$interval', '$http', function ($scope, $timeout, $interval, $http) {
    $scope.title = "Test Title";

    $scope.data = [];

    var hasvaluereturnd = true; // Flag to check 
    var thresholdvalue = 20; // interval threshold value

    function poll(interval, callback) {
        return $interval(function () {
            if (hasvaluereturnd) {  //check flag before start new call
                callback(hasvaluereturnd);
            }
            thresholdvalue = thresholdvalue - 1;  //Decrease threshold value 
            if (thresholdvalue == 0) {
                $scope.stopPoll(); // Stop $interval if it reaches to threshold
            }
        }, interval)
    }

    var pollpromise = poll(1000, function () {
        hasvaluereturnd = false;
        //$timeout(function () {  // You can test scenario where server takes more time then interval
        $http.get('http://httpbin.org/get?timeoutKey=timeoutValue').then(
            function (data) {
                hasvaluereturnd = true;  // set Flag to true to start new call
                $scope.data = data;

            },
            function (e) {
                hasvaluereturnd = true; // set Flag to true to start new call
                //You can set false also as per your requirement in case of error
            }
        );
        //}, 2000); 
    });

    // stop interval.
    $scope.stopPoll = function () {
        $interval.cancel(pollpromise);
        thresholdvalue = 0;     //reset all flags. 
        hasvaluereturnd = true;
    }
}]);
于 2017-04-02T05:00:41.580 に答える