为了账号安全,请及时绑定邮箱和手机立即绑定

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

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

HUX布斯 2019-04-07 09:38:35
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到底是如何知道函数签名(参数)的?
查看完整描述

2 回答

?
子衿沉夜

TA贡献1828条经验 获得超3个赞

AngularJS是通过静态编译来分析参数的。
functionACtrl(paramA,paramB){}
ACtrl.toString()
"functionACtrl(paramA,paramB){}"
通过对函数toString()操作,获取到函数全部内容,然后进行编译处理。
坏处是不抗压缩。
                            
查看完整回答
反对 回复 2019-04-07
  • 2 回答
  • 0 关注
  • 262 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信