错误包括ngAnimate作为依赖模块

时间:2015-12-25 03:26:13

标签: javascript angularjs ng-animate

当我尝试将ngAnimate添加为依赖模块时,我收到错误消息。我知道这不是一个很好的问题,但我希望有人可以帮我弄清楚为什么我会收到错误。

使用JSFiddle时可以正常工作:https://jsfiddle.net/m2jwb77h/3/

但是我在浏览器中运行时遇到错误。当我将ngAnimate作为依赖模块删除时,一切都很好,所以我知道这就是问题所在。

HTML:

<!DOCTYPE html>
<html>

<head>
    <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular.min.js"></script>
    <script scr="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.4.8/angular-animate.js"></script>
    <script src="ngAnimateTest.js"></script>
</head>

<body ng-app="myApp" ng-controller="myController">
    {{test}}
</body>

</html>

JS:

var app = angular.module("myApp", ["ngAnimate"]);
app.controller("myController", ["$scope", function($scope) {

    $scope.test = "It works!"

}]);

1 个答案:

答案 0 :(得分:1)

cloudflare CDN出了点问题。 尝试将此网址用于ngAnimate

    <script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular.min.js"></script>

更新:错误是错字 scr而不是src