我试图在将每个对象推送到数组之前过滤掉重复的对象。
function collaborators() {
var api = '/docs/' + doc_id + '/json';
$.getJSON(api, {format: "json"} ).done(function(data) {
var collaborators = [];
for (var i = 0; i < data.notes.length; i++) {
if ( data.notes[i].author === data.notes[i+1].author) {
console.log('dup found')
console.log(data.notes[i].author)
} else {
collaborators.push(data.notes[i].author);
}
}
});
}
控制台显示“未捕获的类型错误:无法读取未定义的属性‘作者’”。但是我在 中看到重复的条目console.log(data.notes[i].author)
,但数组为空。需要纠正什么?