I am new to angularjs and I am reading a book called "angularjs authoritative tutorial". There is a demo in the second chapter, as follows.
Angular version 1.2.29 is used here. If it is changed to 1.3.1, an error will be reported.
Excuse me, how did this happen? How should I debug this error?
<!doctype html>
<html ng-app>
<head>
<meta charset="utf-8">
<title>Simple App</title>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.2.29/angular.min.js"></script>
</head>
<body>
<p ng-controller="MyController">
<h1>Hello {{clock}}</h1>
</p>
<script type="text/javascript">
function MyController($scope, $timeout) {
$scope.clock = new Date();
var updateClock = function() {
$scope.clock = new Date();
};
setInterval(function() {
$scope.$apply(updateClock);
}, 1000);
updateClock();
};
</script>
</body>
</html>
After version 1.3, controllers are no longer found on the window object
$controller will no longer look for controllers on window.
https://github.com/angular/angular.js/blob/master/CHANGELOG.md#breaking-changes-31
The JS Bin
http://jsbin.com/vekixa/edit?html,console,output
If you cannot circumvent the wall, please change the CDN inside the wall
It is recommended that the poster follow up to version 1.4 (version is really important)
Just like this. . Of course you can also write