14

如何使用下划线检查对象数组是否具有键值。

例子:

var objects = [
  {id:1, name:'foo'},
  {id:2, name:'bar'}
]

check(objects, {name: foo}) // true

我认为应该使用地图制作:

_.map(objects, function(num, key){ console.log(num.name) });
4

2 回答 2

49

你可以用some这个。

check = objects.some( function( el ) {
    return el.name === 'foo';
} );

checktrue函数是否返回true一次,否则为false.

但是在 IE7/8 中不支持。您可以查看 shim 的 MDN 链接。

对于下划线库,它看起来也实现了(它是 的别名any)。例子:

check = _.some( objects, function( el ) {
    return el.name === 'foo';
} );
于 2012-05-22T10:22:42.313 回答
2

使用find http://underscorejs.org/#find

var check = function (thelist, props) {
    var pnames = _.keys(props);
    return _.find(thelist, function (obj) {
        return _.all(pnames, function (pname) {
            return obj[pname] == props[pname];
        });
    });
};
于 2012-05-22T08:26:54.147 回答