我有一个从我的服务器获取一些客户端数据的服务:
app.factory('clientDataService', function ($http) {
var clientDataObject = {};
var cdsService = {
fetch: function (cid) {
//$http returns a promise, which has a then function, which also returns a promise
var promise = $http.get('/clients/stats/' + cid + '/').then(function (response) {
// The then function here is an opportunity to modify the response
console.log(response);
// The return value gets picked up by the then in the controller.
clientDataObject = {'data': response.data, 'currentClientID': cid};
return clientDataObject;
});
// Return the promise to the controller
return promise;
}
};
return cdsService;
});
然后在一个控制器中我做:
//get stats
clientDataService.fetch($scope.id).then(function (response) {
$scope.client_data = {
'statistics': response.data
}
});
这一切都很好。但是,我正在尝试从该服务上的另一个控制器进行监视,以在数据更改时更新其范围,而不必重新启动 http 请求:
$scope.$watch('clientDataService.clientDataObject', function (cid) {
alert(cid);
});
我现在只是在提醒,但它永远不会触发。当页面最初加载时,它会警告“未定义”。我在控制台中没有错误,并且所有 $injects 都很好,但它似乎从未意识到服务中的数据已更改。我在手表上做错了吗?
非常感谢本