9

我遇到了 $rootScope.$broadcast 事件没有被触发的问题:

App.run(function($rootScope){
    var text = 'Not So Static Now';
    $rootScope.$broadcast('event:staticText', text);
}).$inject = ['$rootScope'];


App.controller('Ctrl1', function($scope, $rootScope) {
   $scope.staticText = "Static Text";

    var things = [
        'AngularJS',
        'StackOverflow',
        'JSFiddle'
    ];

    $scope.$emit('event:things', things);

    $scope.$on('event:staticText', function(e, args){
        $scope.staticText = args;
    });

}).$inject = ['$scope', '$rootScope'];

上面应该将 {{staticText}} 输出更改为“Not so Static Now”,但事实并非如此。

我创建了一个 JSFiddle 来演示问题http://jsfiddle.net/flavrjosh/uXzTV/

这是我正在尝试调试的一个更大问题的一部分,其中 IE9 在页面刷新后没有触发事件(第一次工作但在刷新时 - F5 或刷新按钮没有任何反应)。

任何帮助/建议将不胜感激

4

1 回答 1

22

看来问题是由于在触发 $rootScope.$broadcast 事件时未设置子范围引起的。

我通过使用解决了这个例子:

App.run(function($rootScope, $timeout){
    var text = 'Not So Static Now';

    $timeout(function(){
        $rootScope.$broadcast('event:staticText', text);
    }, 100);
}).$inject = ['$rootScope'];

和:

App.controller('Ctrl1', function($scope, $rootScope) {
    $scope.staticText = "Static Text";

    var things = [
        'AngularJS',
        'StackOverflow',
        'JSFiddle'
    ];

    $scope.$emit('event:things', things);

    $scope.$on('event:staticText', function(e, args){
        $scope.$apply(function(){
            $scope.staticText = args;
        });
    });

}).$inject = ['$scope', '$rootScope'];

可以在这里看到

不确定这是否是最好的解决方案,但它有效。

于 2012-11-15T14:36:36.720 回答