You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You gain a lot of performance when add track by to ng-repeat
<tr ng-repeat="person in people"> // add track by here
<td ng-repeat="column in columns">// add track by here
{{person[column]}}
</td>
<td ng-repeat="column in columns">// add track by here
{{person[column]}}
</td>
</tr>
The text was updated successfully, but these errors were encountered:
You gain a lot of performance when add track by to ng-repeat
The text was updated successfully, but these errors were encountered: