我试图找出我在这里做错了什么。由于某种原因,angular将构建div结构10次,因为$ scope.aggregators中有10个项目。但是它根本没有构建TR结构?
<div class="info-pane" ng-controller="CatalogCtrl">
<table id="records">
<thead>
<tr>
<th><span>Vendor Code</span></th>
</tr>
</thead>
<tbody>
<tr ng-repeat="aggregator in aggregators}">
<td>{{aggregator.vendor_code}}</td>
</tr>
</tbody>
</table>
<div ng-repeat="aggregator in aggregators">
</div>
答案 0 :(得分:1)
删除}来自ng-repeat =&#34;聚合器中的聚合器}&#34;