angularjs新手。我并没有真正得到angular documentation关于[ $ scope ....作为数组的角色的解释。内联注入注释对此代码意味着什么?
var myApp = angular.module('myApp',[]);
myApp.controller('GreetingCtrl', ['$scope', function($scope) {
$scope.greeting = 'Hola!';
}]);
答案 0 :(得分:0)
这种注入方式对于以后的代码缩小非常有用。