Uncaught Error: [$injector:nomod] Module 'firstApp.seconddir' is not available! You either misspelled the module name or forgot to load it. If registering a module ensure that you specify the dependencies as the second
这是我的代码 http://goo.gl/LOcYI2
我在项目中包含模块时遇到错误。
答案 0 :(得分:0)
您应该在使用之前注册新模块。
Setting module: angular.module('your new module name', [])
Getting module: angular.module('module name')
因此,在您的情况下,更改以下行并且不会出现错误。
angular.module('firstApp.seconddir').config(Routes);
到
angular.module('firstApp.seconddir', []).config(Routes);
工作演示:http://goo.gl/RvHzqr