Iam new to angular framework.Here是我的场景,我想在一段时间后更改我的$scope.variable,所以我使用
javascript setTimeout方法.
$scope.variable='PrevIoUs'; setTimeout(function(){ $scope.variable='NEXT'; },3000);
这段代码对我没有效果我使用$apply()来使这个代码工作.
后来我知道角度本身有一个$timeout服务,这样做同样的工作.
$scope.variable='PrevIoUs'; $timeout(function () { $scope.variable='NEXT'; },2000);
我如何比较$timeout服务与javascript setTimeout的性能?
为什么我们应该使用$timeout而不是setTimeout?
谢谢 :)