gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-11-30 11:57:38 25 4
gpt4 key购买 nike

在我的 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);
}

最佳答案

来自 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;
}

关于javascript - 如何知道对象是否包含在我的 jquery 数组列表中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37484972/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com