我是个新角色并遇到问题.我使用了yeoman角度生成器并添加了ngAnimate模块.当我运行时,grunt test我收到以下错误:
Error: [$injector:modulerr] Failed to instantiate module portfolioApp due to:
Error: [$injector:modulerr] Failed to instantiate module ngAnimate due to:
Error: [$injector:nomod] Module 'ngAnimate' 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.
Run Code Online (Sandbox Code Playgroud)
app.js
'use strict';
angular.module('portfolioApp', [
'ngAnimate',
'ngCookies',
'ngResource',
'ngSanitize',
'ngRoute'
])
Run Code Online (Sandbox Code Playgroud)
的index.html
<script src="bower_components/jquery/jquery.js"></script>
<script src="bower_components/angular/angular.js"></script>
<!-- build:js scripts/modules.js -->
<script src="bower_components/angular-animate/angular-animate.js"></script>
<script src="bower_components/angular-resource/angular-resource.js"></script>
<script src="bower_components/angular-cookies/angular-cookies.js"></script> …Run Code Online (Sandbox Code Playgroud)