0
角度コントローラで1秒ごとにJsonオブジェクトを取得します。 私のアプローチは$ intervalを使用することでしたが、実際には動作します。
しかし
Google Chromeのでは - 私の間隔数が約200秒
Safariのあたりである - 何も全く起こらない、コントローラから= 0
コードを数える - クロム
のFirefoxと同じ動作:
(function(){
var app = angular.module('timeDB',[])
app.controller('listUserSupervisorController', ['$scope','$http','$interval', function($scope, $http, $interval){
var count = 0;
$interval(function(){
$http.get('json/listUsers').then(function(res){
$scope.userList = res.data;
console.log("interval: "+count);
count += 1;
}), 1000
});
}]);
})();
角度のバージョン:1.5.5
Firefoxのバージョン:45.0.2
Google Chromeのバージョン:50.0.2661.94
ありがとうございました。 –