在离子中循环通过JSON

时间:2017-10-23 09:16:06

标签: json typescript ionic-framework ionic3

有没有办法在离子3

中循环使用如下所示的JSON
[
 {
   "date": "28/09/2017 08:03",
   "data": {
     "1": 10,
     "2": 0
   }
},
{
   "date": "28/09/2017 08:04",
   "data": {
    "1": 0,
    "2": 5
   }
}
]

我试图循环但无济于事。这是我尝试过的最新但没有用的

this.data = returnedJson;

  for (let reportData of this.data.data) {
        console.log("Our Data : " + reportData);
    }

  for (let reportData in this.data.data) {
        console.log("Our Data : " + reportData);
    }

1 个答案:

答案 0 :(得分:1)

试试这个:

for (const item of this.data) {
    console.log("Our Data : " + item.data);
}