var ary = [1,2,3,4];
var obj=[
{
id:1,
name:'luo1'
},
{
id:2,
name:'luo2'
},
{
id:5,
name:'luo5'
}
]
obj里面的对象id只要在ary里面,就删除掉,
比如最后输出
obj=[{
id:5,
name:'luo5'
}]
var ary = [1,2,3,4];
var obj=[
{
id:1,
name:'luo1'
},
{
id:2,
name:'luo2'
},
{
id:5,
name:'luo5'
}
]
obj里面的对象id只要在ary里面,就删除掉,
比如最后输出
obj=[{
id:5,
name:'luo5'
}]
这是一个求集合的补集的问题:
参考文章:
https://stackoverflow.com/que...
// Generic helper function that can be used for the three operations:
function operation(list1, list2, operationIsUnion) {
var result = [];
for (var i = 0; i < list1.length; i++) {
var item1 = list1[i],
found = false;
for (var j = 0; j < list2.length; j++) {
if (item1.userId === list2[j].userId) {
found = true;
break;
}
}
if (found === operationIsUnion) {
result.push(item1);
}
}
return result;
}
// Following functions are to be used:
function inBoth(list1, list2) {
return operation(list1, list2, true);
}
function inFirstOnly(list1, list2) {
return operation(list1, list2, false);
}
function inSecondOnly(list1, list2) {
return inFirstOnly(list2, list1);
}
// Sample data
var list1 = [ {userId:1234,userName:'XYZ'},
{userId:1235,userName:'ABC'},
{userId:1236,userName:'IJKL'},
{userId:1237,userName:'WXYZ'},
{userId:1238,userName:'LMNO'}
];
var list2 = [ {userId:1235,userName:'ABC'},
{userId:1236,userName:'IJKL'},
{userId:1252,userName:'AAAA'}
];
console.log('inBoth:', inBoth(list1, list2));
console.log('inFirstOly:', inFirstOnly(list1, list2));
console.log('inSecondOnly:', inSecondOnly(list1, list2));
你想得到的解决方案 属于 inSecondOnly
for(var i =0;i<obj.length;i++){
for(var j = 0;j< ary.length;j++){
if(obj[i].id == ary[j]e){
obj.splice(i,0);
}
}
}
10 回答11.3k 阅读
5 回答4.9k 阅读✓ 已解决
4 回答3.2k 阅读✓ 已解决
2 回答2.8k 阅读✓ 已解决
3 回答2.4k 阅读✓ 已解决
3 回答2.2k 阅读✓ 已解决
2 回答2.7k 阅读✓ 已解决