我正在使用 angular.js 制作这样的表格:
<table>
<tr ng-repeat="order in orders">
<td>
{{order.custName}} ...(several columns)
</td>
</tr>
</table>
我想为每个订单添加第二行,所以表格看起来像这样:
order1ID order1Name order1Amnt
order1Comment
order2ID order2Name order2Amnt
order2Comment
order3ID order3Name order3Amnt
order3Comment
但我不知道怎么做!