如何在打字稿中读取没有键的json数组?

时间:2016-08-31 00:19:31

标签: angular typescript1.8

示例JSON数据:Complex Github API

github api上面的片段。 enter image description here

现在我需要使用typescript的'full_name','owner.login'列表。

1 个答案:

答案 0 :(得分:0)

你可以在JSON数组上使用map函数,如下所示。

   let jsonResult = 'result from api call';
   let result = jsonResult.map(res => {
     return {
       full_name : res.full_name,
       owner_login: res.owner.login
     }
   })

result将有列表。

希望这会有所帮助!!