单个$ scope属性上的$ scope。$ apply()

时间:2017-04-13 23:44:10

标签: javascript angularjs

有没有办法告诉Angular 1.6只对一个属性进行脏检查?

例如,我打电话给:

 $scope.unansweredCount++;
 $scope.$apply();

相反,我想知道我们是否可以这样做:

 $scope.unansweredCount++;
 $scope.$apply('unansweredCount');

或其他什么。这样,Angular不必检查所有更改,只需要检查一个属性。

希望我的问题有道理。

0 个答案:

没有答案