我正在尝试使用requestAnimationFrame
创建一个滚动数字的JavaScript动画。
为了看到动画滚动,我需要使用$apply
刷新视图。这里的问题是,当我开始动画时,摘要循环已经在运行,所以我的$apply
返回错误"$apply already in progress"
。
寻找一个解决方案,我使用0的$timeout
,它可以完美地工作,但我想知道是否有其他解决方案来避免使用在性能方面不太好的超时?
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
http://codepen.io/phliem/pen/ZWOjwz?editors=1011
1条答案
按热度按时间ax6ht2ek1#
如果我像HadiJZ说的那样使用$evalAsync(),效果会很好!
只需要更换
由
这里有一篇好文章http://www.bennadel.com/blog/2605-scope-evalasync-vs-timeout-in-angularjs.htm