angularjs如何知道查找模块?

时间:2015-01-08 18:45:57

标签: angularjs

我正在查看这个开源项目赏金来源的angularjs app。

我需要一些澄清:

  1. angular.js如何知道在哪里查找模块?

    angular.module('常数',[]); angular.module(' filters',[]); angular.module('指令',[]); angular.module(' services',[]); angular.module('工厂',[]); angular.module(' resources',[]); angular.module(' bountysource',['常数','服务','指令','过滤器', '工厂','资源']);

    angular.module('活动',[' bountysource']); angular.module('筹款活动',[' bountysource']); angular.module('球队',[' bountysource']);

  2. https://github.com/bountysource/frontend/blob/master/src/app/app.js#L29

    模块常量,过滤器等位于/ src / common文件夹

    1. 我只看到app.js文件中定义的主AppController,其他控制器如何加载或是否有约定?
    2. https://github.com/bountysource/frontend/blob/master/src/app/app.js#L69

      不仅是控制器,还有routes.js文件呢?

      或者当项目使用gruntjs构建时,这一切都只是工作b / c它将所有这些组合成一个文件吗?

1 个答案:

答案 0 :(得分:3)