如何通过两个键订购JSON对象?
我有一个JSON对象,我想先按一个键排序,然后再按第二个键排序,类似于SQL中两列排序。 以下是我将拥有的JSON示例:
{
"GROUPID":3169675,
"LASTNAME":"Chantry"
}
我想按GROUPID和LASTNAME排序所有结果。 我使用JSON排序功能来排序一个键,但不是多个。
任何帮助都会很棒。
假设你有一个对象数组:
var data = [
{ "GROUPID":3169675, "LASTNAME":"Chantry" },
{ "GROUPID":3169612, "LASTNAME":"Doe" },
...
];
您可以使用自定义比较器进行排序。 首先按GROUPID
排序,然后按LASTNAME
排序,比较两个对象的逻辑是:
if GROUPID of first is smaller than second
return -1;
else if GROUPID of first is larger than second
return 1;
else if LASTNAME of first is smaller than second
return -1;
else if LASTNAME of first is larger than second
return 1;
else
return 0;
要排序对象数组,请使用上述算法并在数组上调用排序方法。 排序完成后, data
应具有所需排序顺序的元素。
data.sort(function(a, b) {
// compare a and b here using the above algorithm
});
这是我最近回答的另一个非常类似的问题。 这是关于使用jQuery对多个列进行排序,但是您可以轻松地去除jQuery部分。 它提供了一些可以扩展到多列的可定制方法。
这是一个通用的方法来排序具有多列的对象数组:
var arr = [
{ id:5, name:"Name3" },
{ id:4, name:"Name1" },
{ id:6, name:"Name2" },
{ id:3, name:"Name2" }
],
// generic comparison function
cmp = function(x, y){
return x > y ? 1 : x < y ? -1 : 0;
};
//sort name ascending then id descending
arr.sort(function(a, b){
//note the minus before -cmp, for descending order
return cmp(
[cmp(a.name, b.name), -cmp(a.id, b.id)],
[cmp(b.name, a.name), -cmp(b.id, a.id)]
);
});
要添加其他列进行排序,可以在数组比较中添加其他项目。
arr.sort(function(a, b){
return cmp(
[cmp(a.name, b.name), -cmp(a.id, b.id), cmp(a.other, b.other), ...],
[cmp(b.name, a.name), -cmp(b.id, a.id), cmp(b.other, a.other), ...]
);
});
编辑 :每@PhilipZ评论下面,在JS中的数组比较转换他们在由昏迷分隔的字符串。
链接地址: http://www.djcxy.com/p/19319.html