我想知道是否可以在如下所示的模型中使用 ng-repeat:
示例模型:
$scope.items = {
item1:{[1,2,3,4,5]},
item2:{[a,b,c,d,e]},
item3:{[a1,b2,c3,d4,e5]}
};
使用 ng-repeat 的表格应该是这样的:
-------------------------
| Item1 | Item2 | Item3 |
-------------------------
| 1 | a | a1 |
| 2 | b | b2 |
| 3 | c | c3 |
| 4 | d | d4 |
| 5 | e | e5 |
-------------------------
如果无法使用此模型,您能否提出一些替代方案?任何帮助将不胜感激。提前致谢。