mean.js中使用哪个文件/文件夹来包含其他js脚本

时间:2015-05-28 15:31:21

标签: node.js mean-stack meanjs

刚开始使用Mean.js锅炉板。 添加了一个名为" datacollectors"的新模块。代表我的具体业务逻辑。 该模块依赖于许多Angular服务,例如angular-route等... 在我的public / modules / datacollectors下,我修改了默认的" registerModule"包含我的依赖关系的行:

ApplicationConfiguration.registerModule('datacollectors',['ngRoute']);

Ran bower install angular-route --save`

当我在浏览器中刷新应用程序时,出现此错误:

Uncaught Error: [$injector:modulerr] Failed to instantiate module datamanager-02 due to:
Error: [$injector:modulerr] Failed to instantiate module datacollectors due to:
Error: [$injector:modulerr] Failed to instantiate module ngRoute due to:
Error: [$injector:nomod] Module 'ngRoute' 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 argument.

我确实在public / lib下安装了angular-route,但我不知道mean.js用于加载任何其他.js文件的文件或目录。

通常情况下,这可以通过在index.html文件中包含标记来完成,但是mean.js样板文件不是这样构造的。

我的问题是:我究竟要在mean.js结构中以正确的加载顺序指定所有其他js脚本?

0 个答案:

没有答案