Thesimplestwaytogetholdofthedependencies,istoassumethatthefunctionparameternamesarethenamesofthedependencies.functionMyController($scope,greeter){...}Givenafunctiontheinjectorcaninferthenamesoftheservicetoinjectbyexaminingthefunctiondeclarationandextractingtheparameternames.Intheaboveexample$scope,andgreeteraretwoserviceswhichneedtobeinjectedintothefunction.上文是在DependencyInjection这篇Guide中截去的原文。其中讲到如果Controller需要某样服务,则只需在他构造函数的参数里添加并指定正确的名称就行了。像上面的例子里,Angular会自动寻找$scope和greeter这两个服务,并传递给函数。但是令我不解的是,Angular是如何知道MyController签名(参数)的?和Function参数相关的变量似乎只有arguments,但这个变量只能在函数内部使用,在外部调用会返回null。functionACtrl(paramA,paramB){}ACtrl.arguments//null那么,Angular到底是如何知道函数签名(参数)的?
子衿沉夜
相关分类