扩展ngRepeat数组而不消化整个数组

时间:2015-06-18 15:18:59

标签: arrays angularjs angularjs-scope angularjs-ng-repeat

当你有一个可扩展的数组时,最好的方法是扩展数组,而不是消化整个数组。



[].push.apply(scope.table, extending);

.filter('to_trusted', ['$sce', function ($sce) {
  return function (text) {
    return $sce.trustAsHtml(text);
  };
}])

<tbody>
  <tr ng-repeat="row in table track by row.index"
      once-class="row.theme"
      ng-bind-html="table[row.index].tpl | to_trusted">
  </tr>
</tbody>
&#13;
&#13;
&#13;

0 个答案:

没有答案