如何解决达到的角度' $ digest()迭代。中止&#39!;错误

时间:2017-01-17 09:38:15

标签: angularjs angular-translate

我的HTML代码中包含此代码:

                <uib-pagination
                   previous-text="{{previousText}}" 
                   next-text="{{nextText}}"
                </uib-pagination>

我的角度翻译是$ watch:

        $translate(['PREVIOUS', 'NEXT']).then(function (translations) {
            $scope.previousText = translations.PREVIOUS;
            $scope.nextText = translations.NEXT;
        });

然后我收到了这个错误:

enter image description here

我将尝试使用本教程解决它:

  1. https://docs.angularjs.org/error/ $ rootScope / infdig

  2. How to Troubleshoot Angular "10 $digest() iterations reached" Error

  3. 但我仍然遇到同样的错误。我尝试通过删除一些代码进行故障排除,这是我的新代码,但我仍然遇到相同的错误。

            $scope.$watch(function()
            {
                $translate().then(function () {
    
                });
            }, true);  
    

    我现在很无能为力。我怎么解决这个问题?顺便说一句,分页确实设法翻译但我在我的控制台中看到了这个错误并且它不整洁。提前谢谢。

0 个答案:

没有答案