11

我找到了一种很好的方法,可以根据以下定义的属性对对象数组进行排序:

在 JavaScript 中按字符串属性值对对象数组进行排序

使用该功能非常适合单个排序(在所有浏览器上),甚至是另一个排序中的排序,除了使用谷歌浏览器!这是 Ege Özcan 用于对象数组的出色排序例程

function dynamicSort(property) { 
    return function (a,b) {
        return (a[property] < b[property]) ? -1 : (a[property] > b[property]) ? 1 : 0;
    }
}

使用一个名为“Data”的数组(当然,我的数组有更多的对象对)......

var Data = [{Category: "Business", Value: "ABC"},{Category:"Personal", Value:"XYZ"}];

通过这样做,我可以获得正确的排序,其中订单被列为每个类别中的所有值......

Data.sort(dynamicSort("Value"));
Data.sort(dynamicSort("Category"));

通过首先按 排序Value,然后按排序Category,我的数组将所有值按排序顺序排列,所有基于业务的值首先列出,然后是所有基于个人的值。完美的!除了在 Chrome 中,数据按类别正确排序,但每个类别中值的顺序似乎相当随机。

有没有人知道在 Chrome 中也可以使用的排序中进行排序的更好方法?

4

5 回答 5

41

我创建了该 dynamicSort 函数的多参数版本:

function dynamicSort(property) { 
    return function (obj1,obj2) {
        return obj1[property] > obj2[property] ? 1
            : obj1[property] < obj2[property] ? -1 : 0;
    }
}

function dynamicSortMultiple() {
    /*
     * save the arguments object as it will be overwritten
     * note that arguments object is an array-like object
     * consisting of the names of the properties to sort by
     */
    var props = arguments;
    return function (obj1, obj2) {
        var i = 0, result = 0, numberOfProperties = props.length;
        /* try getting a different result from 0 (equal)
         * as long as we have extra properties to compare
         */
        while(result === 0 && i < numberOfProperties) {
            result = dynamicSort(props[i])(obj1, obj2);
            i++;
        }
        return result;
    }
}

我创建了一个数组,如下所示:

var arr = [
    {a:"a",b:"a",c:"a"},
    {a:"b",b:"a",c:"b"},
    {a:"b",b:"a",c:"a"},
    {a:"b",b:"a",c:"b"},
    {a:"b",b:"b",c:"a"},
    {a:"b",b:"b",c:"b"},
    {a:"b",b:"b",c:"a"},
    {a:"b",b:"b",c:"b"},
    {a:"b",b:"b",c:"a"},
    {a:"b",b:"b",c:"b"},
    {a:"b",b:"b",c:"a"},
    {a:"c",b:"b",c:"b"},
    {a:"c",b:"c",c:"a"}
];

当我这样做时它起作用了,

arr.sort(dynamicSortMultiple("c","b","a"));

这是一个工作示例:http: //jsfiddle.net/ZXedp/

于 2012-07-08T00:32:46.527 回答
8

执行 Javascript 多标准排序(或多参数排序)的最简单方法是使用.sort,将多个参数连接在一起,然后比较两个字符串。

例如:

data.sort(function (a, b) {

  var aConcat = a["property1"] + a["property2"];
  var bConcat = b["property1"] + b["property2"];

  if (aConcat > bConcat) {
    return 1;
  } else if (aConcat < bConcat) {
    return -1;
  } else {
    return 0;
  }

});

我在这里包含了一个 JsFiddle 脚本:http: //jsfiddle.net/oahxg4u3/6/

于 2014-12-19T01:03:26.747 回答
2

您可能还想看看 thenBy.js:https ://github.com/Teun/thenBy.js

它允许您使用标准的 Array.sort,但使用 firstBy().thenBy().thenBy() 样式。

于 2013-08-04T16:47:01.683 回答
2

我现在这篇文章已经很老了,无论如何我今天找到了它并引用了Ege Özcan,我改进了他为任何感兴趣的人实现 DESC-ASC SQL-Like 功能的出色解决方案(http://jsfiddle.net/ZXedp/65/):

function dynamicSortMultiple() {
    var props=[];
    /*Let's separate property name from ascendant or descendant keyword*/
    for(var i=0; i < arguments.length; i++){
        var splittedArg=arguments[i].split(/ +/);
        props[props.length]=[splittedArg[0], (splittedArg[1] ? splittedArg[1].toUpperCase() : "ASC")];
    }
    return function (obj1, obj2) {
        var i = 0, result = 0, numberOfProperties = props.length ;
        /*Cycle on values until find a difference!*/
        while(result === 0 && i < numberOfProperties) {
            result = dynamicSort(props[i][0], props[i][1])(obj1, obj2);
            i++;
        }
        return result;
    }
}

/*Base function returning -1,1,0 for custom sorting*/
function dynamicSort(property, isAscDesc) { 
    return function (obj1,obj2) {
        if(isAscDesc==="DESC"){
            return ((obj1[property] > obj2[property]) ? (-1) : ((obj1[property] < obj2[property]) ? (1) : (0)));
        }
        /*else, if isAscDesc==="ASC"*/
        return ((obj1[property] > obj2[property]) ? (1) : ((obj1[property] < obj2[property]) ? (-1) : (0)));
    }
}

通过这样的方式调用函数:

arr.sort(dynamicSortMultiple("c DESC","b Asc","a"));
于 2016-04-12T14:18:32.737 回答
0

这是我的解决方案。它比 lodash 的_.sortBy()多列排序函数快大约两倍(参见http://jsperf.com/multi-column-sort。我生成排序函数的文本,然后在标准.sort()中使用它。它也适用于 Chrome 和 Firefox。

function multiColumnSort(arr,sf) {
    var s = '';
    sf.forEach(function(f,idx) {
        s += 'if(arguments[0].'+f+'>arguments[1].'+f+')return 1;';
        s += 'else if(arguments[0].'+f+'==arguments[1].'+f+')';
        s += (idx < sf.length-1)? '{' : 'return 0';
    });
    s += Array(sf.length).join('}')+';return -1';
    return arr.sort(new Function(s));
};
于 2014-02-17T19:35:51.390 回答