我正在尝试将变量传递给函数,以确定哪个数组是多维数组,其中包含3个要按以下顺序排序的数组:

wordData = [["john", "Bill", "Dan"],["Smith", "Adams", "Davidson"],[23, 45, 51]];

dataReader(1);

function dataReader(sortBy){

    wordData.sort(sortFunc)

    function sortFunc(a,b) {
        a = a[sortBy];
        b = b[sortBy];
        return a == b ? 0 : (a < b ? -1 : 1)
    }

}


稍后,我在每个3列数组中都设置了一个列表框,这些变量假定是配对的,因此John,Smith和23始终在同一行中。但是我似乎根本无法使排序工作

最佳答案

您没有在排序正确的数组。尝试这个:

wordData = [["john", "Bill", "Dan"],["Smith", "Adams", "Davidson"],[23, 45, 51]];

dataReader(1);

function dataReader(arrIndex){

    var arr=wordData[arrIndex];
    var bools=[];
    var tmpArr=[];

    arr.sort(sortFunc);

    for(var i=0, j=wordData.length; i<j; i++) {
        if(i!=arrIndex) {
            tmpArr=bools.slice(0);
            wordData[i].sort(sortArr);
        }
    }

    function sortFunc(a,b) {
        var which=(a == b) ? 0 : (a < b ? -1 : 1);
        bools.push(which);
        return which;
    }
    function sortArr(a,b) {
        return tmpArr.shift();
    }
}


如果我理解正确,arrIndex可能比sortBy更好。

09-30 09:16