0
ここで間違っていることを理解しようとしています。何らかの理由で$ scope.aggregatorsに10個の項目があるため、angleはdiv構造体を10回構築します。しかし、それはTR構造を全く構築しないのですか?Angular ng-repeat 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>
削除 '}' ' –
あなたから削除}あなたのng-repeatに「}」があります。
あなたは今、私はちょうど馬鹿のように感じる –