在 JavaScript 中从对象数组中检索对象
在 JavaScript 中,数组可以存储具有不同结构的对象。要在这个复杂的数据结构中定位特定对象,我们可以利用有效的方法,例如 find() 方法。
查找具有匹配属性值的对象
考虑示例数组:
var array = [ { name: "string 1", value: "this", other: "that" }, { name: "string 2", value: "this", other: "that" } ];
检索对象所在的位置name 属性匹配特定值(“字符串 1”),我们可以使用 find() 方法:
let obj = array.find(obj => obj.name === 'string 1');
find() 方法迭代数组并返回第一个匹配的对象。在这种情况下,它将返回以下对象:
{ name: "string 1", value: "this", other: "that" }
注意:当匹配的对象包含其他对象时,find()方法将返回一个对数组中匹配对象的引用。
以上是如何从 JavaScript 对象数组中高效地查找和检索特定对象?的详细内容。更多信息请关注PHP中文网其他相关文章!