第一种显示注入
function demoController(a){}
demoController.$inject=['$scope']
第二种显示注入
angular.module('myApp',[]).controller('demoController',['$scope',function(a){
}])
第一种显示注入
function demoController(a){}
demoController.$inject=['$scope']
第二种显示注入
angular.module('myApp',[]).controller('demoController',['$scope',function(a){
}])