Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

注意是angular1.5.x, 不是2

我在根模块(App)中依赖了ngResource模块和一个自定义的foo模块. 我的这个foo模块要使用ngResource模块的服务, 就不需要再次引入啦. angular是在什么时候把ngResource模块引入到foo模块的?

虽然我们都知道这个app模块是跟模块, 可是我并没有在任何地方告诉angular, 这个app就是我的根模块呀?

app.js

angular.module('app', ['foo','ngResource']);

foo.js

var phone = angular.module('foo', []);

phone.factory('Foo', ['$resource'], function($resource) {
    // 使用$resource
})

这样的代码, Foo这个模块是如何能自动注入$resource的?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
390 views
Welcome To Ask or Share your Answers For Others

1 Answer

有关入依赖注入的事,是由Angular统一维护的,自然已经注入的所有东西不会重复加载。

而app为根模块,这取决于你的如何启用你的Angular,比如:

ng-app="app"

或者

angular.bootstrap(document, ['app']);

都是明确表示 app 为启用模块的开始。


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...