The simplest way to get hold of the dependencies, is to assume that the function parameter names are the names of the dependencies. ``` js function MyController($scope, greeter) { ... } ``` Given a function the injector can infer the names of the service to inject by examining the function declaration and extracting the parameter names. In the above example $scope, and greeter are two services which need to be injected into the function. 上文是在Dependency Injection这篇Guide中截去的原文。其中讲到如果Controller需要某样服务,则只需在他构造函数的参数里添加并指定正确的名称就行了。像上面的例子里,Angular会自动寻找$scope和greeter这两个服务,并传递给函数。 但是令我不解的是,Angular是如何知道MyController签名(参数)的?和Function参数相关的变量似乎只有arguments,但这个变量只能在函数内部使用,在外部调用会返回null。 ``` js function ACtrl(paramA,paramB){} ACtrl.arguments ``` //null 那么,Angular到底是如何知道函数签名(参数)的?