我意识到这是前一段时间被问到的,但我想我会添加我的解决方案。
此函数动态生成排序方法。只需提供每个可排序的子属性名称,并在前面加上 +/- 以指示升序或降序。超级可重用,它不需要知道你放在一起的数据结构。可以证明白痴 - 但似乎没有必要。
function getSortMethod(){
var _args = Array.prototype.slice.call(arguments);
return function(a, b){
for(var x in _args){
var ax = a[_args[x].substring(1)];
var bx = b[_args[x].substring(1)];
var cx;
ax = typeof ax == "string" ? ax.toLowerCase() : ax / 1;
bx = typeof bx == "string" ? bx.toLowerCase() : bx / 1;
if(_args[x].substring(0,1) == "-"){cx = ax; ax = bx; bx = cx;}
if(ax != bx){return ax < bx ? -1 : 1;}
}
}
}
用法示例:
items.sort(getSortMethod('-price', '+priority', '+name'));
这将首先items
以最低的方式排序price
,关系将指向具有最高的项目priority
。进一步的联系被项目打破name
其中 items 是一个数组,如:
var items = [
{ name: "z - test item", price: "99.99", priority: 0, reviews: 309, rating: 2 },
{ name: "z - test item", price: "1.99", priority: 0, reviews: 11, rating: 0.5 },
{ name: "y - test item", price: "99.99", priority: 1, reviews: 99, rating: 1 },
{ name: "y - test item", price: "0", priority: 1, reviews: 394, rating: 3.5 },
{ name: "x - test item", price: "0", priority: 2, reviews: 249, rating: 0.5 } ...
];
现场演示:http : //gregtaff.com/misc/multi_field_sort/
编辑:修复了 Chrome 的问题。