刚开始 做一个项目,总是报错“XX is not a function” 最后发现 原因 , 原来是 服务的 注入位置 有问题。
angular.module("myController",[])
.controller("myCtrl",["$scope","$http","$state",function($scope,$http,$state){
//function里面注入的顺序一定要和前面的顺序一致,不然会报错
}])
时间: 2024-11-08 20:38:48
刚开始 做一个项目,总是报错“XX is not a function” 最后发现 原因 , 原来是 服务的 注入位置 有问题。
angular.module("myController",[])
.controller("myCtrl",["$scope","$http","$state",function($scope,$http,$state){
//function里面注入的顺序一定要和前面的顺序一致,不然会报错
}])