如何在ES5中使用多个值在数组中查找对象的索引?

时间:2019-01-15 13:28:08

标签: javascript ecmascript-5

我当前正在使用一个值(项目编号)在数组中查找对象。但是,如果碰巧有多个订单都具有相同的项目编号,那么如何使用两个值来查找特定的对象索引?

对象的结构如下:

var object = {
    line: line,
    poNumber: purchaseOrder,
    item: item
};

这是我现在正在查找对象的方式:

var posArrInd = posArr.map(function (x) { return x.item; }).indexOf(String(item));
var po = posArr[posArrInd];
var poLine = po.line;

2 个答案:

答案 0 :(得分:4)

如果我正确阅读了您的问题,听起来像您可以使用filter。例如:

 var theItem = 'however your item numbers look'
 var matches = posArr.filter(function(x) { return x.item === theItem })

这将返回posArr中所有在theItem中指定了特定物品编号的东西的数组

答案 1 :(得分:2)

ES6 +

您可以使用.findIndex()

https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/findIndex

var found = items.findIndex(function(itm) {
   return itm.number1 === number1 && itm.number2 === number2;
});

ES5:

使用.filter():

https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/filter

var foundItems = items.filter(function(itm) {
   return itm.number1 === number1 && itm.number2 === number2;
});

if (foundItems && foundItems.length > 0) {
 var itemYouWant = foundItems[0];
}

获取索引-您可以将索引值作为过滤方法的一部分返回。查看文档以获取更多示例。