查找具有下划线中特定键值的对象的数组索引

时间:2014-02-07 15:07:36

标签: javascript underscore.js

在下划线中,我可以成功找到具有特定键值的项目

var tv = [{id:1},{id:2}]
var voteID = 2;
var data = _.find(tv, function(voteItem){ return voteItem.id == voteID; });
//data = { id: 2 }

但是如何找到该对象发生在哪个数组索引?

12 个答案:

答案 0 :(得分:159)

1.8中添加了

findIndex

index = _.findIndex(tv, function(voteItem) { return voteItem.id == voteID })

请参阅:http://underscorejs.org/#findIndex

或者,如果你不介意制作另一个临时名单,这也有效:

index = _.indexOf(_.pluck(tv, 'id'), voteId);

请参阅:http://underscorejs.org/#pluck

答案 1 :(得分:37)

如果你想使用下划线,那么你的谓词函数可以更灵活,这里有2个想法。

方法1

由于_.find的谓词同时接收元素的值和索引,因此可以使用副作用来检索索引,如下所示:

var idx;
_.find(tv, function(voteItem, voteIdx){ 
   if(voteItem.id == voteID){ idx = voteIdx; return true;}; 
});

方法2

查看下划线源代码,这就是_.find的实现方式:

_.find = _.detect = function(obj, predicate, context) {
  var result;
  any(obj, function(value, index, list) {
    if (predicate.call(context, value, index, list)) {
      result = value;
      return true;
    }
  });
  return result;
};

要将其设为findIndex函数,只需将行result = value;替换为result = index;这与第一种方法的想法相同。我在其中指出,下划线使用副作用来实现_.find

答案 2 :(得分:33)

扩展Underscore的

Lo-Dash具有findIndex方法,可以找到给定实例的索引,或者通过给定的谓词,或者根据给定对象的属性。

在你的情况下,我会这样做:

var index = _.findIndex(tv, { id: voteID });

试一试。

答案 3 :(得分:28)

我不知道是否存在执行此操作的现有下划线方法,但您可以使用普通javascript实现相同的结果。

Array.prototype.getIndexBy = function (name, value) {
    for (var i = 0; i < this.length; i++) {
        if (this[i][name] == value) {
            return i;
        }
    }
    return -1;
}

然后你可以这样做:

var data = tv[tv.getIndexBy("id", 2)]

答案 4 :(得分:10)

如果你的目标环境支持ES2015(或者你有一个简单的步骤,例如使用Babel),你可以使用原生的Array.prototype.findIndex()。

举个例子

const array = [ {id:1}, {id:2} ]
const desiredId = 2;
const index = array.findIndex(obj => obj.id === desiredId);

答案 5 :(得分:4)

您可以使用indexOf

中的lodash方法
var tv = [{id:1},{id:2}]
var voteID = 2;
var data = _.find(tv, function(voteItem){ return voteItem.id == voteID; });
var index=_.indexOf(tv,data);

答案 6 :(得分:3)

保持简单:

// Find the index of the first element in array
// meeting specified condition.
//
var findIndex = function(arr, cond) {
  var i, x;
  for (i in arr) {
    x = arr[i];
    if (cond(x)) return parseInt(i);
  }
};

var idIsTwo = function(x) { return x.id == 2 }
var tv = [ {id: 1}, {id: 2} ]
var i = findIndex(tv, idIsTwo) // 1

或者,对于非仇恨者,CoffeeScript变体:

findIndex = (arr, cond) ->
  for i, x of arr
    return parseInt(i) if cond(x)

答案 7 :(得分:0)

如果您期望多次匹配,因此需要返回一个数组,请尝试:

_.where(Users, {age: 24})

如果属性值是唯一的并且您需要匹配的索引,请尝试:

_.findWhere(Users, {_id: 10})

答案 8 :(得分:0)

Array.prototype.getIndex = function (obj) {
    for (var i = 0; i < this.length; i++) {
        if (this[i][Id] == obj.Id) {
            return i;
        }
    }
    return -1;
}

List.getIndex(obj);

答案 9 :(得分:0)

这是为了帮助lodash用户。通过执行以下操作检查您的密钥是否存在:

hideSelectedCompany(yourKey) {
 return _.findIndex(yourArray, n => n === yourKey) === -1;
}

答案 10 :(得分:0)

最简单的解决方案是使用lodash:

  1. 安装lodash:
  

npm install --save lodash

  1. 使用方法findIndex:

const _ = require('lodash');

findIndexByElementKeyValue = (elementKeyValue) => {
  return _.findIndex(array, arrayItem => arrayItem.keyelementKeyValue);
}

答案 11 :(得分:0)

我有类似的情况,但是相反是基于给定对象的索引找到使用的密钥。我可以在{em>下划线中找到解决方案,方法是使用Object.values将对象返回到数组中以获取发生的索引。

var tv = {id1:1,id2:2};
var voteIndex = 1;
console.log(_.findKey(tv, function(item) {
  return _.indexOf(Object.values(tv), item) == voteIndex;
}));
<script src="https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.9.1/underscore-min.js"></script>