关于javascript:如何知道对象是否包含在我的jquery数组列表中?

How to know whether the object contains in my Array List of jquery?

在我的Ajax成功函数数据中,我得到了一个对象列表。我还有一个具有相同类型对象的数组列表。如何编写一个条件来检查该对象是否包含在我的列表中?

1
2
3
4
5
6
//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

我在做这样的事,它不起作用

1
2
3
4
5
6
if (target.indexOf(item) !== -1) {
    //item is not present in the above target array list
    console.log(item);
} else {
    console.log(item.FullName);
}


从如何确定对象是否在数组中

1
2
3
4
5
6
7
8
9
10
function containsObject(obj, list) {
var i;
for (i = 0; i < list.length; i++) {
    if (list[i].YourId === obj.Id) {
        return true;
    }
}

return false;
}