angularjs – 在角度模块创建后添加依赖关系

前端之家收集整理的这篇文章主要介绍了angularjs – 在角度模块创建后添加依赖关系前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
你们知道是否可以在创建模块后添加模块依赖关系?这样的事情
// init module in file A
angular.module("myApp",[]);

// retrieve module in file B and add new dependencies:
mod = angular.module("myApp");
// now I want to add an 'ngResource' dependency to mod
// ???

编辑:我明白这可能是一个奇怪的问题.我正在研究一个基于组件的应用程序组织,并希望看到子组件是否可以在父组件模块中添加依赖关系而不定义自己的模块.这样的事情

app/
 components/
   |__componentA/ 
        |__app.js // initializes component A module
        |__subcomponentA/ 
              |__app.js // want to add subcomponentA dependencies to componentA module from here

我的替代方法是直接在componentA模块上声明所有的subcomponentA依赖关系,但从组织的角度来看,我宁愿把这些依赖项保留在subcomponentA目录中,所以如果我以后决定从应用程序中删除子组件A,需要记住从componentA模块中删除它的依赖关系.我希望将关于子组件A的所有内容分组到子组件A目录中.我的构建脚本将确保componentA代码在子组件A之前被处理.

谢谢大家谁刺伤了这个.

我使用以下方法,为我工作正常.
var app = angular.module("myApp",[]);

angular.module("myApp").requires.push('ngResource');
原文链接:https://www.f2er.com/angularjs/143107.html

猜你在找的Angularjs相关文章