2
生成表中的分組數據。如果我有以下數據結構:AngularJS使用ROWSPAN
data = [{"nums": [1, 6, 5], "name": "John"},
{"nums": [2], "name": "Bob"},
{"nums": [9, 6], "name": "Jason"}]
而且我希望它輸出使用NG-重複到HTML作爲:
|------------|
| 1 | |
|---| |
| 6 | John |
|---| |
| 5 | |
|---|--------|
| 2 | Bob |
|---|--------|
| 5 | |
|---| Jason |
| 2 | |
|---|--------|
如何我可以這樣做嗎?
可能[重複](http://stackoverflow.com/questions/21104750/angularjs-use-of-rowspan-to-group-hierarchical-data)。 – lintmouse