Controller中错误 TypeError: $rootScope.$broadcast is not a function

前端之家收集整理的这篇文章主要介绍了Controller中错误 TypeError: $rootScope.$broadcast is not a function前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

最近研究Angluar的前端开发,遇到
TypeError: $rootScope.$broadcast is not a function 错误

代码

...
myApp.controller('queryCtrl',['$scope','$document','$rootScope',function($scope,$rootScope){
    $scope.queryClick = function(){
           var url = "http://localhost:8080/DataVisualor/ServletJson?"+
          "TID="+tID+"&"+
          "TOwner="+tOwner+"&"+
          "TNumber="+carNumber+"&"+
          "TStartTime="+tStartTime+"&"+
          "TEndTime=" + tEndTime ;
        $rootScope.$broadcast('update',url);
}]);

错误原因:

'$document',$rootScope

'$document','$rootScope' 顺序需要互换,不然,function中$rootScope对应到$document 类型了,没有 $rootScope.$broadcast方法

原文链接:https://www.f2er.com/angularjs/149675.html

猜你在找的Angularjs相关文章