无法让 rootscope 在控制器中工作

can't get rootscope working in controller

所以我正在尝试将一个事件从一个控制器广播到另一个控制器。 但我一直收到这个 error

我的控制器看起来像这样。

angular.module('myApp',[]).
   controller('20SettingsController',
     ['$rootscope','$scope', '$http', '$modal', 
     function ( $rootscope, $scope, $http, $modalInstance) 
     {
        $rootscope.broadcast("fireEvents");
     }]);

我在做某事吗?

一如既往地感谢您的宝贵时间。

我想这只是你拼错了 $rootscope,

大写'S'应该是$rootScope

它发生了:-)