我正在使用ng-boilerplate(v0.3.2-release),我试图添加ngAnimate
,但它不起作用!我确实错过了一些愚蠢的事情。
我有正确CDN的链接:
<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/angular.js/1.2.20/angular-animate.min.js"></script>
签入浏览器来源显示文件已正确加载。
但是当我尝试添加到我的模块ngAnimate时:
angular.module( 'ngBoilerplate.UserDetails', [
'ui.router',
'plusOne',
'ngAnimate'
])
Grunt失败并说karma:unit:run
失败了。
我已经使用bower在供应商目录(like in this question)中安装ng-animate,但这也没有用。
答案 0 :(得分:0)
代表OP添加。
在build.config.js文件中,我向vendor_files添加了ng-animate.js的路径,问题解决了:)