猿问

Angular.js Dependency Injection 的实现原理是什么?

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到底是如何知道函数签名(参数)的?
HUX布斯
浏览 263回答 2
2回答

子衿沉夜

AngularJS是通过静态编译来分析参数的。functionACtrl(paramA,paramB){}ACtrl.toString()"functionACtrl(paramA,paramB){}"通过对函数toString()操作,获取到函数全部内容,然后进行编译处理。坏处是不抗压缩。
随时随地看视频慕课网APP

相关分类

JavaScript
我要回答