使用AngularJS,我有两个控制器在我的应用程序中共享相同的服务。
当我触发由portalController
函数控制的事件(请参阅setLang()
)时,我看不到applicationController的模型正在更新。
这个问题似乎只出现在Firefox和Chrome上。在IE8中,它出乎意料地正常工作。
(function () {
'use strict';
var controllers = angular.module('portal.controllers');
controllers.controller('portalController', function portalController($scope, UserService, NavigationService, $translate) {
$scope.User = UserService.getUserinfo();
$scope.setLang = function (langKey) {
$translate.uses(langKey);
UserService.setUserinfoLocale(langKey);
UserService.getUserApplications(Constants.key_ESS);
UserService.getUserApplications(Constants.key_MED);
UserService.getUserApplications(Constants.key_SVF);
$.removeCookie(Constants.cookie_locale);
var domain = document.domain;
if (domain.indexOf(Constants.context_acc) != -1 || domain.indexOf(Constants.context_prd) != -1 || domain.indexOf(Constants.context_tst) != -1) {
domain = "." + domain;
$.cookie(Constants.cookie_locale, langKey, {path:"/", domain:domain});
} else {
$.cookie(Constants.cookie_locale, langKey, {path:"/"});
}
};
$scope.logout = function () {
NavigationService.logout();
};
$translate.uses(UserService.getUserinfoLocale());
});
//mainController.$inject = ['$scope','UserInfo'];
}());
(function () {
'use strict';
var controllers = angular.module('portal.controllers');
controllers.controller('applicationController', function ($scope, UserService) {
$scope.ESS = UserService.getUserApplications(Constants.key_ESS);
$scope.SVF = UserService.getUserApplications(Constants.key_SVF);
$scope.MED = UserService.getUserApplications(Constants.key_MED);
});
}());
UserService.prototype.getUserApplications = function(entity){
var locale = this.getUserinfoLocale();
return this.userApplications.query({locale: locale, entity: entity});
};
答案 0 :(得分:1)
问题是我使用$ scope而不是$ rootScope,
数据通过服务中的第一个控制器进行更新,但没有任何内容可以通知第二个控制器这一变化:
$scope.setLang = function(locale){
$rootScope.data = sharedService.getData(locale);
};
第二个控制器中的 $rootScope.$watch('data', function(newValue) {
$scope.data = newValue;
});
下面是一个指向“错误”小提琴的链接,另一个适用于其他人也遇到此问题的链接:
错误的一个:http://jsfiddle.net/GFVYC/1/
工作一:http://jsfiddle.net/GFVYC/4/