gpt4 book ai didi

javascript - 通过键名而不是索引获取数组中的对象

转载 作者:行者123 更新时间:2023-11-28 13:07:49 25 4
gpt4 key购买 nike

我有一个这样的收藏......

var data = {
"buckets": [
{
"key": "ia-Business",
"doc_count": 88
},
{
"key": "ia-Health_Sciences_and_Allied_Health",
"doc_count": 58
},
{
"key": "ia-Media_Communications_and_Creative_Arts",
"doc_count": 40
},
{
"key": "ia-Information_Technology",
"doc_count": 35
}
]
};


alert(data.buckets[0].doc_count);

是否可以获取属性doc_count的值对于 key 的对象ia-Business的属性(property)?

最佳答案

使用Array#find,如

buckets.find(bucket => bucket.key === 'ia-Business')

关于javascript - 通过键名而不是索引获取数组中的对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45227786/

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