if (sorted[i].Document === 'abc' || sorted[i].Document === 'xyz') {
delete sorted[i].Document;
}
当我尝试删除特定的两个文档时,它会被删除,但下一次它会抛出一个错误,提示 Document 未定义。
var sorted = DocumentListData.Documents.sort(function (a, b) {
var nameA = a.Document.toLowerCase(),
nameB = b.Document.toLowerCase();
return nameA.localeCompare(nameB);
});
我正在对文档进行排序,然后对其进行迭代,然后尝试删除abc and xyz
.