答案 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
将有列表。
希望这会有所帮助!!