Angularjs [$rootScope:inprog] inprogress error

前端 未结 2 1798
春和景丽
春和景丽 2020-12-16 11:31

I am getting angularjs [$rootScope:inprog] error.

Error: [$rootScope:inprog] http://errors.angularjs.org/1.2.7/$rootScope/inprog?p0=%24digest.

2条回答
  •  盖世英雄少女心
    2020-12-16 11:55

    Usually this means that you defined $rootScope.$apply somewhere manually inside of the another angular code which has lifecycle already. This should not be happen in common cases as angular tracks the lifecycle itself. The one common case where it is needed is when you need to update scope from non-angular code (like jquery or old-fashioned js stuff). So please check if you have this somewhere. In case you really need it's better to use safe apply (the common code snippet):

    angular.module('main', []).service('scopeService', function() {
         return {
             safeApply: function ($scope, fn) {
                 var phase = $scope.$root.$$phase;
                 if (phase == '$apply' || phase == '$digest') {
                     if (fn && typeof fn === 'function') {
                         fn();
                     }
                 } else {
                     $scope.$apply(fn);
                 }
             },
         };
    });
    

    Then you can inject this service and make necessary calling by:

    scopeService.safeApply($rootScope, function() {
        // you code here to apply the changes to the scope
    });
    

提交回复
热议问题