I've been looking into the caveats of the AngularJS Digest cycle and I would like to better understand where the separation is between using it properly and improperly.
For example, if I have an AngularJS code that looks like this:
var myApp = angular.module("testApp", []);
myApp.controller("testController", ["$scope", "$timeout", function($scope, $timeout){
setTimeout(function(){
$scope.username = "Test User name";
}, 3000);
$timeout(function(){
$scope.username = "AngularJS User name";
}, 3000);
}]);
Why is setTimeout
not being used as part of the Digest Cycle, whereas $timeout
is, and how can I fix this to work?
Please keep in mind, I am looking not only for a code solution but for an explanation of why this occurs. As good as a code solution may come, it will not explain itself.
$timeout
is an angularized version ofsetTimeout()
, i.e. it is coded in such a way that it triggers a digest cycle.setTimeout()
is a plain Javascript function that knows nothing about Angular or a digest cycle. SincesetTimeout()
is not a simple JS object, Angular cannot$watch
it.So the whole point of having functionality like
$timeout
is that they are angular-friendly versions of some Javascript functionality.