如何修复错误:[$ rootScope:inprog]?

时间:2018-03-28 07:19:18

标签: javascript angularjs angularjs-ng-repeat

我需要动态地重新补充on-repeat

$scope.$watch('todos', function(newVal, oldVal) {
    $scope.$apply(function(){
       $scope.todos = newVal;
    });
}, true);

可能我写错了代码并选择了不好的方式,所以也许我需要重写一些idk

1 个答案:

答案 0 :(得分:0)

似乎你需要编写这段代码:

$timeout(() => {
      $scope.todos = newVal;
}, 0);