gpt4 book ai didi

javascript - 迭代对象数组中存在的对象数组

转载 作者:行者123 更新时间:2023-12-01 01:09:58 27 4
gpt4 key购买 nike

children.BallAdequacy 是一个对象数组。playerRank 内部是一个对象数组。从每个playerRank数组中,我需要在控制台中分别显示Ball和playerHeight值。我使用了 map 和过滤方法,但仍然无法打印每个对象的球和玩家高度。 你能告诉我如何解决它吗?在下面提供我的代码片段和数据

应打印的每个对象的示例 222--->HEIGHT,ww22w22--->HEIGHT 等

let children = {
BallAdequacy: [{
"flight": "dd",

"specialty": "ff",

"playerRank": [{
"Ball": "222",
"playerHeight": "HEIGHT"
},
{
"Ball": "ddeeeew",
"playerHeight": "NON-HEIGHT"
},
],
"hospitalPrivilege": []
},
{
"flight": "kkk",
"specialty": "ff",

"playerRank": [{
"Ball": "kfkf",
"playerHeight": "HEIGHT"
},
{
"Ball": "All",
"playerHeight": "NON-HEIGHT"
}
],
"hospitalPrivilege": []
}
]
};


children.BallAdequacy.map(status => {
console.log("status.playerRank--->", status.playerRank);
status.playerRank.filter(game => {
//console.log("game.playerHeight--->", game.playerHeight);
if (game.playerHeight === 'HEIGHT') {
console.log("after if --->", game);
console.log("after if --->", game.Ball);

}
// (game.playerHeight === 'HEIGHT')
//console.log("outsidei f--->", game);
});
console.log("after filter status.playerRank--->", status.playerRank);
//BallList = getBalls(status.playerRank);
});

最佳答案

遵循map()filter()的定义

The map() method creates a new array with the results of calling a provided function on every element in the calling array.

The filter() method creates a new array with all elements that pass the test implemented by the provided function.

这两个方法都返回一个新数组,它必须克隆一个新对象,但你不需要它。您所需要的只是 console.log 一些内容,并且没有更改数据。您应该使用 forEach 来代替。并删除一些不必要的控制台。

let children = {
BallAdequacy: [{
"flight": "dd",

"specialty": "ff",

"playerRank": [{
"Ball": "222",
"playerHeight": "HEIGHT"
},
{
"Ball": "ww22w22",
"playerHeight": "HEIGHT"
},

{
"Ball": "wwwww",
"playerHeight": "NON-HEIGHT"
},
{
"Ball": "ddeeeew",
"playerHeight": "NON-HEIGHT"
},

,
{
"Ball": "All",
"playerHeight": "NON-HEIGHT"
}
],
"hospitalPrivilege": []
},
{
"flight": "kkk",
"specialty": "ff",

"playerRank": [{
"Ball": "kfkf",
"playerHeight": "HEIGHT"
},

{
"Ball": "iioioo",
"playerHeight": "HEIGHT"
},
{
"Ball": "24jk",
"playerHeight": "NON-HEIGHT"
},


{
"Ball": "All",
"playerHeight": "NON-HEIGHT"
}
],
"hospitalPrivilege": []
}
]
};





children.BallAdequacy.forEach(status => {
status.playerRank.forEach(game => {
if (game.playerHeight === 'HEIGHT') {
console.log(`${game.Ball} ---> ${game.playerHeight}`);
}
});
});

关于javascript - 迭代对象数组中存在的对象数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55251618/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com