我有一个数组:
myArray = [{'id':'73','foo':'bar'},{'id':'45','foo':'bar'}, etc.]
我无法更改数组的结构。我正在传递ID为45,我想获取'bar'数组中的该对象。
45
'bar'
如何在JavaScript或jQuery中做到这一点?
使用find()方法:
find()
myArray.find(x => x.id === '45').foo;
从MDN:
find()如果数组中的元素满足提供的测试功能,则该方法返回数组中的第一个值。否则undefined返回。
undefined
如果要查找其 索引 ,请使用findIndex():
findIndex()
myArray.findIndex(x => x.id === '45');
该findIndex()方法返回满足提供的测试功能的数组中第一个元素的索引。否则返回-1。
如果要获取匹配元素的数组,请改用filter()方法:
filter()
myArray.filter(x => x.id === '45');
这将返回一个对象数组。如果要获取foo属性数组,可以使用以下map()方法:
foo
map()
myArray.filter(x => x.id === '45').map(x => x.foo);