我有一个包含我需要排序的对象的数组,并根据每个数组项的 3 个特定值删除重复项。目前我正在使用两个循环(非嵌套):1 进行排序,另一个用于删除项目。有没有办法在排序或类似的东西时删除重复项?对于 1000 个项目,以下代码非常慢,我想知道是否有更快的方法:
var list = [
{a: "Somename", b: "b", c: 10},
{a: "Anothername", b: "a", c: 12},
// and so on
];
function sortList(list) {
// Sort the list based on the 3 specific values
list = list.sort(function(a,b) {
a.a = a.a.toLowerCase();
b.a = b.a.toLowerCase();
if (a.a < b.a) return -1;
if (a.a > b.a) return 1;
a.b = a.b.toLowerCase();
b.b = b.b.toLowerCase();
if (a.b < b.b) return -1;
if (a.b > b.b) return 1;
if (a.c < b.c) return -1;
if (a.c > b.c) return 1;
return 0;
});
// Loop through removing duplicates
for (var a,b,i=list.length-1; i > 0; i--) {
a = list[i];
a.a = a.a.toLowerCase();
a.b = a.b.toLowerCase();
b = list[i-1];
b.a = b.a.toLowerCase();
b.b = b.b.toLowerCase();
if (a.a===b.a && a.b===b.b && a.c===b.c) list.splice(i-1,1);
}
return list;
}
list = sortList(list);
请不要使用 jQuery 答案,或建议使用其他库的答案。导入一个库来做这么简单的事情似乎有点矫枉过正。