内联注入注释

时间:2014-02-16 23:09:54

标签: angularjs angularjs-scope

angularjs新手。我并没有真正得到angular documentation关于[ $ scope ....作为数组的角色的解释。内联注入注释对此代码意味着什么?

var myApp = angular.module('myApp',[]);

myApp.controller('GreetingCtrl', ['$scope', function($scope) {
    $scope.greeting = 'Hola!';
}]);

1 个答案:

答案 0 :(得分:0)

这种注入方式对于以后的代码缩小非常有用。