$rootScope 到底是啥
出处
在bootstrap函数中会调用injector.invoke,里面用到了rootScope:
1 | injector.invoke(['$rootScope', '$rootElement', '$compile', '$injector', |
从之前的文章中我们可以知道$rootScope从$rootScopeProvider.$get方法返回的,那么我们就可以看$rootScopeProvider.$get方法返回了什么。
$RootScopeProvider
1 | function Scope() { |