未捕获的错误:[$ injector:modulerr] ngAnimate AngularJS 1.2

时间:2013-10-24 06:14:14

标签: angularjs

到运行我的应用程序时,我得到未捕获的错误:[$ injector:modulerr] ,据我所知,此更新为1.2,有几个功能不再是对于核心,我已经下载了angular-animage.js以及所有其他外部依赖项,对于所有文件版本都相同 AngularJS v1.2.0-rc.2

我还将依赖项添加到我的app.js中,如下所示:

'use strict';
angular.module('mseApp', ['ui.bootstrap', 'ui.select2', 'facebook', 'ngCookies', 'ngAnimate', 'ngRoute']).config(//mode configurations here);

我的js参考:

  <script src='@Url.Content("~/Scripts/angular.min.js")'> </script>
    <script src='@Url.Content("~/Scripts/angular-resource.min.js")'> </script>
    <script src='@Url.Content("~/Scripts/angular-route.min.js")'></script>
    <script src='@Url.Content("~/Scripts/angular-animate.min.js")'></script>
    <script src='@Url.Content("~/Scripts/ui-bootstrap-0.6.0.min.js")'></script>
    <script src='@Url.Content("~/Scripts/select2.js")' type="text/javascript"></script>
    <script src='@Url.Content("~/Scripts/angular-animate.min.js")'></script>
    <script src='@Url.Content("~/Scripts/angular-facebook.js")'></script>
    <script src='@Url.Content("~/Scripts/angular-cookies.min.js")'></script>

如果我删除ngAnimate依赖项,它就可以正常工作......

修改 This是掠夺者。

如果我将ng-route添加到引用中,则会破坏应用程序。

1 个答案:

答案 0 :(得分:7)

关于Plnkr,问题如下:

在angularjs-1.2.0-rc.2-animate-app.js中,您已按以下方式定义了模块:

var myApp = angular.module('mseApp', ['ngRoute', 'ngAnimate']);

在您的HTML中,您已按如下方式引用了ng-app:

<html ng-app="MyApp">

要让AngularJS选择您已定义的模块,您需要使用ng-app来引用您在JS中指定的模块名称。所以它实际上应该是:

<html ng-app="mseApp">

进行此更改可让您的应用运行