在我的Ajax成功函数数据中,我得到了一个对象列表。我还有一个包含相同类型对象的数组列表。如何写一个条件来检查该对象是否包含在我的列表中?
//In my Ajax Success function
$.each(data, function(index, item) {
//This is my another array list
var target = [];
target = self.target();
//Need to check the condition whether the above "item" is in my above array list
我正在做这样的事情,它不起作用
if (target.indexOf(item) !== -1) {
//item is not present in the above target array list
console.log(item);
} else {
console.log(item.FullName);
}
答案 0 :(得分:3)
来自How to determine if object is in array
function containsObject(obj, list) {
var i;
for (i = 0; i < list.length; i++) {
if (list[i].YourId === obj.Id) {
return true;
}
}
return false;
}