gpt4 book ai didi

jquery - 如何根据字符串值查找 JSON 对象成员

转载 作者:行者123 更新时间:2023-12-01 02:45:24 25 4
gpt4 key购买 nike

所以我们假设我有一个这样的 JSON 文件:

{ "store": {
"book": [
{ "category": "reference",
"author": "Nigel Rees",
"title": "Sayings of the Century",
"price": 8.95
},
{ "category": "fiction",
"author": "Evelyn Waugh",
"title": "Sword of Honour",
"price": 12.99
},
{ "category": "fiction",
"author": "Herman Melville",
"title": "Moby Dick",
"isbn": "0-553-21311-3",
"price": 8.99
},
{ "category": "fiction",
"author": "J. R. R. Tolkien",
"title": "The Lord of the Rings",
"isbn": "0-395-19395-8",
"price": 22.99
}
]
}
}

我想要做的是获取“book”的一个成员及其所有标题为“Sword of Honour”的字符串值对。我怎样才能用 JQuery 做到这一点?问题是我不知道成员的索引 ID,如果我知道,那将是微不足道的,即 store.book[1].XXX 会给我我正在查找的所有兄弟键值对的值对于。

关于如何用最少的代码做到这一点有什么想法吗?

最佳答案

使用数组filter :

var matches = store.book.filter(function(val, index, array) {
return val.title === 'Sword of Honour';
});

结果将是与过滤谓词匹配的所有 book 元素的数组。

注意:这是一个 ES5 方法。链接的 MDN 页面上有一个适用于非 ES5 浏览器的垫片。

关于jquery - 如何根据字符串值查找 JSON 对象成员,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12029749/

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