データベースからデータを収集するスクリプトに問題があります。私は$ watchを使用したので、データのダウンロードが終了したらAngularに知らせたいと思います。残念ながら、それは動作しません。角度呼び出しは、change loadingComplete値の後ではなく、最初に機能します。
angular
.module('app')
.controller('tlmController', function($scope, $http) {
var vm = this;
var data = [];
vm.countTestLines = 0;
vm.loadingComplete = false;
$scope.$watch('vm.loadingComplete', function() {
console.log(data);
});
$http({
method: 'GET',
url: 'app/server/tt/count_testlines.php'
}).then(function successCallback(response) {
vm.countTestLines = parseInt(response.data.count);
downloadInParts(data, 0, vm.countTestLines);
}, function errorCallback(response) {
console.log('error');
});
var downloadInParts = function(data, offset, max) {
if(max < offset) {
vm.loadingComplete = true;
return;
}
$http({
method: 'GET',
url: 'app/server/tt/get_testlines.php',
params: { offset: offset }
}).then(function successCallback(response) {
data = data.concat(response.data);
downloadInParts(data, offset + 5, max);
}, function errorCallback(response) {
console.log('error');
});
}
});
私はAngularの男ではありませんが、newValueとoldValueをリスナーparamに '$ watch'メソッドに渡そうとしましたか?そしてそれに 'if(newValue!== oldValue)'をチェックして変更を処理することができます。 –
以下の回答のいずれかがあなたの問題を解決した場合は、そのうちの1つを回答として受け入れることを検討してください。 – Danscho