这是一个有趣的noob问题。我查看了angularjs.org处的示例,并将html和css复制到我的项目中。我将ngAnimate添加到我的应用程序的依赖项中。但它不起作用。在(取消)检查时,显示正确的div,但没有动画。
我尝试添加' ngAnimate'到我的Controller的依赖项,但后来我收到此错误:http://errors.angularjs.org/1.2.11/$injector/unpr?p0=ngAnimateProvider%20%3C-%20ngAnimate
我注意到示例应用有ng-app =" ngAnimate"在body标签中,我认为将ngAnimate添加到我的依赖项中会做同样的事情。
有人可以帮忙吗?
这里是小提琴:enter link description here(unfortunatley angularjs不工作)
var app = angular.module('my', [
'ngAnimate',
'my.controllers'
]);
var controllers = app.module('my.controllers', []);
controllers.controller('MyController', function($scope) {
$scope.checked = true;
});
答案 0 :(得分:1)
从angularjs 1.2.11升级到1.3.0-beta7就可以了。