我有一个 $http 调用,我用它检索对象数组。我对该端点进行了三个调用,最终得到三个数组,如下所示:
[
{type: Dog, count: 3}
{type: Cat, count: 4}
{type: Elephant, count: 1}
]
[
{type: Dog, count: 1}
{type: Cat, count: 9}
]
[
{type: Dog, count: 19}
{type: Cat, count: 4}
{type: Elephant, count: 12}
{type: Frog, count: 2}
]
第一次调用是 8 月统计数据,9 月 2 日,10 月 3 日。
我想要的是然后创建一个看起来像这样的数据集......
[
{type:Dog, data:[3,1,9]}
{type:Cat, data:[4,9,4]}
{type:Elephant, data:[1. null, 12]}
{type:Frog, data:[null, null, 2}
]
...这样我就可以使用 ngRepeat 循环遍历每个元素以显示月份/动物统计数据表。
有人有想法么?
谢谢。