私のアプリケーションでは、コントローラーに注入される自己更新データ サービスが必要です。
app.factory("StatsService", function() {
var service;
service = {
data: 0,
init: function() {
var self = this;
setInterval(function() {
self.data = Math.floor((Math.random() * 100) + 1);
}, 1000);
}
};
service.init();
return service;
});
コントローラーの例を次に示します。
app.controller("SourcesController", ['$scope', 'StatsService', function($scope, StatsService) {
$scope.data = StatsService.data;
$scope.$watch('data', function(val) {
// this does not work either
});
}
コントローラーにサービスの変更を反映させるにはどうすればよいですか? サービスまたはコントローラーで何か問題があったかどうかはわかりませんが、機能しません。