AngularJS Hello World问题

时间:2015-02-19 18:26:55

标签: javascript jquery ajax angularjs

我有这个Hello World示例使用此链接源到angular:https://ajax.googleapis.com/ajax/libs/angularjs/1.0.8/angular.min.js

但同样似乎没有使用最新的稳定版角度,你们中的任何人都可以解释一下为什么?兼容性,变化?

https://ajax.googleapis.com/ajax/libs/angularjs/1.3.13/angular.min.js

<!doctype html>
<html lang="en" ng-app>
<head>
<meta charset="utf-8">
</head>
<body>
<h1 ng-controller="callMe">{{helloRobert}}</h1>           
<script     src="https://ajax.googleapis.com/ajax/libs/angularjs/1.0.8/angular.min.js">    </script>
<script type="text/javascript">
function callMe($scope)
{
$scope.helloRobert = " HOLA ROBERT ";
}
</script>
</body>
</html>

1 个答案:

答案 0 :(得分:1)

根据documentation,从版本1.3开始,您无法使用默认控制器功能。

  

$ controller将不再在窗口上查找控制器...我们发现允许全局控制器功能鼓励不良做法,因此我们决定默认禁用此行为。

在此plunker上更改版本会对其进行验证。

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