两种写法的区别
angular.module('hello',[]).controller('helloNgCtrl',['$scope',function($scope){...........}]);
angular.module('hello',[]).controller('helloNgCtrl',function($scope){...........});
这两种写法有什么区别吗?老师
angular.module('hello',[]).controller('helloNgCtrl',['$scope',function($scope){...........}]);
angular.module('hello',[]).controller('helloNgCtrl',function($scope){...........});
这两种写法有什么区别吗?老师
2016-07-21
举报