我需要做的就是比較兩個對象數組,並刪除第二個具有相同屬性值的項目。例如:比較兩個對象數組並刪除第二個具有相同屬性值的項目
var a = [{'name':'bob', 'age':22}, {'name':'alice', 'age':12}, {'name':'mike', 'age':13}];
var b = [{'name':'bob', 'age':62}, {'name':'kevin', 'age':32}, {'name':'alice', 'age':32}];
function remove_duplicates(a, b) {
for (var i = 0, len = a.length; i < len; i++) {
for (var j = 0, len = b.length; j < len; j++) {
if (a[i].name == b[j].name) {
b.splice(j, 1);
}
}
}
console.log(a);
console.log(b);
}
console.log(a);
console.log(b);
remove_duplicates(a,b);
我不明白爲什麼這不工作,而是給出了:
Uncaught TypeError: Cannot read property 'name' of undefined
我期待什麼是B中的以下內容:
[{'name':'kevin', 'age':32}];
也許因爲在你的循環中重新定義了'len'變量 –