我有數據從JSON請求來集合..這我想用角..但它沒有正常工作..希望你可以幫我這個具有行跨度來顯示。Angularjs於類別使用ROWSPAN
$scope.data = [
{
order_number: "A-0001",
name: "computer 01-01",
status: 'new'
},
{
order_number: "A-0002",
name: "computer 02-01",
status: 'new'
},
{
order_number: "A-0001",
name: "computer 01-02",
status: 'new'
},
{
order_number: "A-0003",
name: "computer 03-01",
status: 'check'
},
{
order_number: "A-0001",
name: "computer 01-03",
status: 'new'
},
{
order_number: "A-0003",
name: "computer 03-02",
status: 'check'
}
];
我希望我的收藏可以像這樣在表格中顯示。
<table class="table table-bordered table-hover">
<thead>
<tr>
<th>Order Number</th>
<th>Name</th>
<th>Status</th>
</tr>
</thead>
<tbody>
<tr>
<td rowspan="3">A-0001</td>
<td>01-01</td>
<td>new</td>
</tr>
<tr>
<td>01-02</td>
<td>new</td>
</tr>
<tr>
<td>01-03</td>
<td>new</td>
</tr>
<tr>
<td>A-0002</td>
<td>02-01</td>
<td>new</td>
</tr>
</tbody>
</table>
感謝您的解決方案..燁您的權利,更好地重組我的數據..和我沒有使用行跨度 –
順便把我的ID在我的例子.. bcoz我只是想通過訂單togroup它。如果我希望狀態的行數與訂單號相同,該怎麼辦?那可能嗎? –
這是可能的,但它不會很乾淨。你基本上必須使用Sonaryr的解決方案,你可以通過狀態來訂購子訂單,並使用函數來確定行範圍。關於我的頭頂,我想不出一個可以做到這一點的數據結構。 – MaskedTwilight