我正在尝试使用requestAnimationFrame
创建一个带滚动数字的javascript动画为了看到动画滚动,我需要使用$ apply来刷新视图。这里的问题是当我开始动画时,摘要周期已经在运行,因此我的$ apply返回错误" $ apply已在进行中"。
寻找一个解决方案,我使用$ timeout 0,它工作得很好,但我想知道是否有其他解决方案可以避免使用在性能方面不是很好的超时?
感谢您的帮助!
Html代码:
<div ng-app="myApp">
<div ng-controller="myController as ctrl">
<animated-counter data-from='0' data-to='{{ctrl.limit}}'></animated-counter>
</div>
</div>
Javascript代码:
(function(){
'use strict';
angular
.module('myApp', [])
.directive('animatedCounter', AnimatedCounter);
AnimatedCounter.$inject = ['$timeout'];
function AnimatedCounter($timeout) {
return {
restrict: 'E',
template: '<div>{{num}}%</div>',
link: function (scope, element, attrs) {
scope.num = parseInt(attrs.from);
var max = parseInt(attrs.to);
//Loop to increment the num
function animloop() {
if (scope.num >= max) { //Stop recursive when max reach
return;
}
requestAnimationFrame(animloop);
scope.$apply(function() {
scope.num += 1;
});
}
// $timeout(function() { //if I use $timeout it works perfectly
animloop();
// });
}
};
}
angular
.module('myApp')
.controller('myController', myController);
function myController() {
var vm = this;
vm.limit = 100;
}
})();
你可以在这里找到CodePen
答案 0 :(得分:5)
如果我使用$ evalAsync()正如HadiJZ所说的那样工作得很好!
只需要替换
scope.$apply(function() {
scope.num += 1;
});
通过
scope.$evalAsync(function() {
scope.num += 1;
})
这里有一篇好文章http://www.bennadel.com/blog/2605-scope-evalasync-vs-timeout-in-angularjs.htm