我在模块注入时遇到了问题。
我的样本Flow is Up-->downward flow
。
这是我的文件夹结构
Like --> Folder User Contains -- UserModule
User\Controller contains
---UserController1
---UserController2
另一个---> GlobalModule
它取决于UserModule
而我正在引导GlobalModule
并且在视图中我调用ng-controller="UserController1"
我在UserController1中注入UserModule,其返回错误UserController1不是函数
我已将模块设置为:
1)UserModule ....
define(['angular'],function(angular){ return angular.module('UserModule',function(){});}
2)在UserController1内部
define(['User\userModule'],function(app){ return app.controller('UserController1',function(){
...
});}
但我的UserController1没有点击..