在JavaScript中根据键值查找和删除数组中的对象

我一直在尝试几种方法,如何在一个数组中找到一个对象,其中ID = var,如果找到,从数组中删除对象,并返回新的对象数组。

数据:

[
{"id":"88","name":"Lets go testing"},
{"id":"99","name":"Have fun boys and girls"},
{"id":"108","name":"You are awesome!"}
]

我能够搜索数组使用jQuery $grep;

var id = 88;


var result = $.grep(data, function(e){
return e.id == id;
});

但是,当id == 88时,如何删除整个对象,并返回如下数据?

数据:

[
{"id":"99", "name":"Have fun boys and girls"},
{"id":"108", "name":"You are awesome!"}
]
371333 次浏览

您可以简化它,在这里实际上不需要使用jQuery。

var id = 88;


for(var i = 0; i < data.length; i++) {
if(data[i].id == id) {
data.splice(i, 1);
break;
}
}

只需遍历列表,找到匹配的id,拼接,然后中断以退出循环。

我可以grep数组的id,但我怎么能删除整个对象的id == 88

简单地通过相反的谓词进行过滤:

var data = $.grep(data, function(e){
return e.id != id;
});

如果测试严格相等,请确保将对象id强制为整数:

var result = $.grep(data, function(e, i) {
return +e.id !== id;
});

Demo

var items = [
{"id":"88","name":"Lets go testing"},
{"id":"99","name":"Have fun boys and girls"},
{"id":"108","name":"You are awesome!"}
];

如果你正在使用jQuery,可以像这样使用jQuery.grep:

items = $.grep(items, function(item) {
return item.id !== '88';
});
// items => [{ id: "99" }, { id: "108" }]

使用ES5 Array.prototype.filter:

items = items.filter(function(item) {
return item.id !== '88';
});
// items => [{ id: "99" }, { id: "108" }]
Array.prototype.removeAt = function(id) {
for (var item in this) {
if (this[item].id == id) {
this.splice(item, 1);
return true;
}
}
return false;
}

这应该可以做到,jsfiddle

也许你正在寻找$.grep()函数:

arr = [
{"id":"88","name":"Lets go testing"},
{"id":"99","name":"Have fun boys and girls"},
{"id":"108","name":"You are awesome!"}
];


id = 88;
arr = $.grep(arr, function(data, index) {
return data.id != id
});

假设id是唯一的,你只需要删除一个元素splice就可以了:

var data = [
{"id":"88","name":"Lets go testing"},
{"id":"99","name":"Have fun boys and girls"},
{"id":"108","name":"You are awesome!"}
],
id = 88;


console.table(data);


$.each(data, function(i, el){
if (this.id == id){
data.splice(i, 1);
}
});


console.table(data);

如果你正在使用Underscore.js,很容易根据键删除对象。

例子:

  var temp1=[{id:1,name:"safeer"},  // Temporary array
{id:2,name:"jon"},
{id:3,name:"James"},
{id:4,name:"deepak"},
{id:5,name:"ajmal"}];


var id = _.pluck(temp1,'id'); // Get id array from temp1
var ids=[2,5,10];             // ids to be removed
var bool_ids=[];
_.each(ids,function(val){
bool_ids[val]=true;
});
_.filter(temp1,function(val){
return !bool_ids[val.id];
});

sift是一个功能强大的集合过滤器,用于这样的操作和更高级的操作。它工作在浏览器的客户端或node . js中的服务器端。

var collection = [
{"id":"88",  "name":"Lets go testing"},
{"id":"99",  "name":"Have fun boys and girls"},
{"id":"108", "name":"You are awesome!"}
];
var sifted = sift({id: {$not: 88}}, collection);

它支持像$in$nin$exists$gte$gt$lte$lt$eq$ne$mod$nin0, $nin1, $nin2, $nin3, $nin4, $nin5, $nin6和$nin7这样的过滤器,并努力与$nin8集合过滤api兼容。

下面是一个解决方案,如果你没有使用jQuery:

myArray = myArray.filter(function( obj ) {
return obj.id !== id;
});

ES6/2015中有一个使用findIndex和数组展开操作符的新方法:

const index = data.findIndex(obj => obj.id === id);
const newData = [
...data.slice(0, index),
...data.slice(index + 1)
]

你可以像这样把它转换成一个函数供以后重用:

function remove(array, key, value) {
const index = array.findIndex(obj => obj[key] === value);
return index >= 0 ? [
...array.slice(0, index),
...array.slice(index + 1)
] : array;
}

这样,你可以使用一个方法删除不同键的项(如果没有符合条件的对象,你会返回原始数组):

const newData = remove(data, "id", "88");
const newData2 = remove(data, "name", "You are awesome!");

或者你可以把它放在你的Array.prototype上:

Array.prototype.remove = function (key, value) {
const index = this.findIndex(obj => obj[key] === value);
return index >= 0 ? [
...this.slice(0, index),
...this.slice(index + 1)
] : this;
};

然后这样用:

const newData = data.remove("id", "88");
const newData2 = data.remove("name", "You are awesome!");

我同意前面的答案。如果你想通过id找到一个对象并删除它,一个简单的方法就像下面的代码:

var obj = JSON.parse(data);
var newObj = obj.filter(item => item.Id != 88);

本机ES6解决方案:

const pos = data.findIndex(el => el.id === ID_TO_REMOVE);
if (pos >= 0)
data.splice(pos, 1);

如果你确定元素在数组中:

data.splice(data.findIndex(el => el.id === ID_TO_REMOVE), 1);

原型:

Array.prototype.removeByProp = function(prop,val) {
const pos = this.findIndex(x => x[prop] === val);
if (pos >= 0)
return this.splice(pos, 1);
};


// usage:
ar.removeByProp('id', ID_TO_REMOVE);

http://jsfiddle.net/oriadam/72kgprw5/

注意:这将就地移除项目。如果你需要一个新的数组,使用filter,就像之前的回答中提到的那样。

const data = [
{"id":"88","name":"Lets go testing"},
{"id":"99","name":"Have fun boys and girls"},
{"id":"108","name":"You are awesome!"}
];

这里我们得到对象的索引,其id值为“;88"

const index = data.findIndex(item => item.id === "88");
console.log(index); // 0

我们使用splice函数从数据数组中删除指定的对象

data.splice(index,1);
console.log(data); // [{"id":"99","name":"Have fun boys and girls"},{"id":"108","name":"You are awesome!"}]