未捕获的错误:[$ rootScope:infdig] [英] Uncaught Error: [$rootScope:infdig]

查看:5528
本文介绍了未捕获的错误:[$ rootScope:infdig]的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

这是我的code段

  <tbody ng-repeat="dtataOne in dataOnes()">
      <tr>
          <td>My Data</td>
          <td class="task-container ui-sortable" colspan="6" ng-model="dtataOne.MyModel" ui-sortable="sortableOptions" stafflastname="{{'Pup-Only'}}" data2="{{'999999'}}" task="{{100}}" data3="{{'No'}}">
            <a href="javascript:void(0);"  ng-repeat="tg in Getdata(data3)" ng-click="ShowData(tg)">{{tg.count}}</a>
          </td> 
     </tr>
 </tbody> 

控制器:

  $scope.Getdata = function(data3) {
        var datas = [];       
            data3.forEach(function (staff) {
                if (true) {
                    staff.tgs.forEach(function (tg) {
                        datas.push(tg);
                    });
                } 
        });

        $scope.data3s().forEach(function (datum) {
            if (datum.id === data3.id) {
                datum.MyModel = datas;
            }
        });
        return datas;
    };

在该行上述code片段datum.MyModel = DATAS;我越来越像下面

In the above code snippet in the line " datum.MyModel = datas;" I am getting an error message like the one mentioned below

未捕获的错误:[$ rootScope:infdig] http://errors.angularjs.org/1.2。 13 / $ rootScope / infdig P0 = 10安培; P1 =%5B%

Uncaught Error: [$rootScope:infdig] http://errors.angularjs.org/1.2.13/$rootScope/infdig?p0=10&p1=%5B%

任何帮助将是拯救生命......

Any help will be life saving ....

推荐答案

在每个周期消化功能 GETDATA(数据3)将被解雇。在该功能你是变异 datum.MyModel 这揭开序幕一个新的周期消化。如果重复超过10次,你会得到一个错误。

On every digest cycle the function Getdata(data3) will get fired. In that function you are mutating datum.MyModel which kick off an new digest cycle. If this repeats more then 10 times, you get an error.

简短的建议:不要在 ngRepeat 前pression使用功能

The short advice: don’t use functions in an ngRepeat expression.

这篇关于未捕获的错误:[$ rootScope:infdig]的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆