标签: performance angularjs
如果我有一个对象:
$scope.data = { users: [...], lotsOfStuff: {...} }
在我看来:
<div ng-repeat="user in data.users"> {{user.something}} </div>
角度是仅在$scope.data.users或整个(大)对象$scope.data上制作$ watch?我们假设我没有任何直接绑定到$scope.data的指令。
$scope.data.users
$scope.data