Angularjs – 分离指令文件,但保持在同一个模块上

前端之家收集整理的这篇文章主要介绍了Angularjs – 分离指令文件,但保持在同一个模块上前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图将一个指令与另一个文件分开,而不必声明一个新的模块 – 不做:
angular.module('myapp.newmodule',[]).directive

但只是:

angular.module( ‘myapp.directives’)指令( ”

myapp.directives模块存在于另一个文件中,工作正常。但是当我尝试在另一个文件中使用它,如上所示(没有[])它失败。

跟随this answer它认为我的方法应该工作,但由于某种原因它失败..

当您首先声明一个模块时,需要具有依赖关系参数。之后,您可以仅使用模块名称参数引用相同的模块。
/* create module */
angular.module('myapp.newmodule',['ngRoute','ngResource']);

/* declare components of same module,note same name*/
angular.module('myapp.newmodule').directive....

如果要创建新模块,则需要将其注入主应用程序模块中作为依赖关系。

/* main ng-app module,injects another module you created below*/
angular.module('myapp.newmodule','ngResource','myUploader']);

/* new module,must have dependency argument */
angular.module('myUploader',[]).directive...
原文链接:https://www.f2er.com/angularjs/144848.html

猜你在找的Angularjs相关文章