我的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;
});
然后我收到了这个错误:
我将尝试使用本教程解决它:
https://docs.angularjs.org/error/ $ rootScope / infdig
How to Troubleshoot Angular "10 $digest() iterations reached" Error
但我仍然遇到同样的错误。我尝试通过删除一些代码进行故障排除,这是我的新代码,但我仍然遇到相同的错误。
$scope.$watch(function()
{
$translate().then(function () {
});
}, true);
我现在很无能为力。我怎么解决这个问题?顺便说一句,分页确实设法翻译但我在我的控制台中看到了这个错误并且它不整洁。提前谢谢。