当你有一个可扩展的数组时,最好的方法是扩展数组,而不是消化整个数组。
[].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;