添加依赖项后浏览器崩溃

时间:2014-12-02 21:24:42

标签: javascript angularjs module

在我的模块中添加额外的依赖项之后,整个事情就在浏览器中崩溃了(无法做任何事情)。

Error: [$injector:modulerr] Failed to instantiate module myAppRename due to:
[$injector:modulerr] Failed to instantiate module myAppRename.view2 due to:
[$injector:modulerr] Failed to instantiate module ngMessages due to:
[$injector:nomod] Module 'ngMessages' 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    

在我的模块中添加ng-message之后,似乎它是各种依赖项的一般问题。

这就是我的模块的样子:

angular.module('myAppRename.view2', ['ngRoute', 'ngMessages'])    

我在这里做错了什么?

1 个答案:

答案 0 :(得分:4)

我遇到了同样的问题,错误是我忘了将angular-messages脚本添加到我的网站:

<script type="text/javascript" src="/js/lib/angular/1.3.9/angular-messages.min.js"></script>