AngularJS中没有更新共享服务的模型

时间:2013-08-05 12:23:57

标签: javascript angularjs angularjs-scope

使用AngularJS,我有两个控制器在我的应用程序中共享相同的服务。 当我触发由portalController函数控制的事件(请参阅setLang())时,我看不到applicationController的模型正在更新。

这个问题似乎只出现在Firefox和Chrome上。在IE8中,它出乎意料地正常工作。

PortalController

(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'];


}());

的ApplicationController

(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

UserService.prototype.getUserApplications = function(entity){
    var locale = this.getUserinfoLocale();
        return this.userApplications.query({locale: locale, entity: entity});
};

的jsfiddle

http://jsfiddle.net/GFVYC/1/

1 个答案:

答案 0 :(得分:1)

问题是我使用$ scope而不是$ rootScope,
数据通过服务中的第一个控制器进行更新,但没有任何内容可以通知第二个控制器这一变化:

第一个控制器中的

代码,通知$ 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/