这个问题看起来很傻,但我无法找出我做错了什么。
我正在尝试根据特定索引对嵌套数组进行排序。如果我继续对数组进行排序,那么数组每次都会发生变化,而这种情况并非如此。此外,当阵列长度有点小时,这个问题不会被重现。
// Code goes here
var app = angular.module("myApp", []);
app.controller("someController", ['$scope', function($scope) {
$scope.AppTitle = "Array sort Issue";
$scope.testArray = [
["2016-04-10T18:30:00.000Z", "b20", 104],
["2016-04-10T18:30:00.000Z", "b20", 81],
["2016-04-10T18:30:00.000Z", "b20", 29],
["2016-04-10T18:30:00.000Z", "b20", 1],
["2016-04-10T18:30:00.000Z", "n0c", 155],
["2016-04-10T18:30:00.000Z", "n0c", 21],
["2016-04-10T18:30:00.000Z", "n0c", 12],
["2016-04-10T18:30:00.000Z", "n0c", 10],
["2016-04-10T18:30:00.000Z", "n0c", 8],
["2016-04-10T18:30:00.000Z", "n0c", 8],
["2016-04-10T18:30:00.000Z", "ecty", 101],
["2016-04-10T18:30:00.000Z", "ecty", 58],
["2016-04-10T18:30:00.000Z", "adgi", 127],
["2016-04-10T18:30:00.000Z", "adgi", 24],
["2016-04-10T18:30:00.000Z", "ath", 77],
["2016-04-10T18:30:00.000Z", "ath", 60],
["2016-04-10T18:30:00.000Z", "hry", 124],
["2016-04-10T18:30:00.000Z", "hry", 8],
["2016-04-10T18:30:00.000Z", "tfan", 132],
["2016-04-10T18:30:00.000Z", "sr", 96],
["2016-04-10T18:30:00.000Z", "hwdg", 59],
["2016-04-10T18:30:00.000Z", "hwdg", 15],
["2016-04-10T18:30:00.000Z", "hwdg", 14],
["2016-04-10T18:30:00.000Z", "hwdg", 6],
["2016-04-10T18:30:00.000Z", "alub", 88],
["2016-04-10T18:30:00.000Z", "ax0", 43],
["2016-04-10T18:30:00.000Z", "ax0", 40],
["2016-04-10T18:30:00.000Z", "ax0", 4],
["2016-04-10T18:30:00.000Z", "ax0", 1],
["2016-04-10T18:30:00.000Z", "voin", 67],
["2016-04-10T18:30:00.000Z", "voin", 19],
["2016-04-10T18:30:00.000Z", "voin", 2],
["2016-04-10T18:30:00.000Z", "p", 87],
["2016-04-10T18:30:00.000Z", "ttm", 65],
["2016-04-10T18:30:00.000Z", "ttm", 18],
["2016-04-10T18:30:00.000Z", "bre", 78],
["2016-04-10T18:30:00.000Z", "bre", 1],
["2016-04-10T18:30:00.000Z", "dew", 41],
["2016-04-10T18:30:00.000Z", "dew", 33],
["2016-04-10T18:30:00.000Z", "cgu", 19],
["2016-04-10T18:30:00.000Z", "cgu", 15],
["2016-04-10T18:30:00.000Z", "cgu", 13],
["2016-04-10T18:30:00.000Z", "cgu", 6],
["2016-04-10T18:30:00.000Z", "cgu", 4],
["2016-04-10T18:30:00.000Z", "cgu", 4],
["2016-04-10T18:30:00.000Z", "cgu", 3],
["2016-04-10T18:30:00.000Z", "cgu", 3],
["2016-04-10T18:30:00.000Z", "cgu", 1],
["2016-04-10T18:30:00.000Z", "cgu", 1],
["2016-04-10T18:30:00.000Z", "cgu", 1],
["2016-04-10T18:30:00.000Z", "an", 69],
["2016-04-10T18:30:00.000Z", "hwo", 69],
["2016-04-10T18:30:00.000Z", "camel", 68],
["2016-04-10T18:30:00.000Z", "mysore", 67],
["2016-04-10T18:30:00.000Z", "power", 60],
["2016-04-10T18:30:00.000Z", "power", 2],
["2016-04-10T18:30:00.000Z", "www", 49],
["2016-04-10T18:30:00.000Z", "www", 10],
["2016-04-10T18:30:00.000Z", "hgyp", 35],
["2016-04-10T18:30:00.000Z", "hgyp", null],
["2016-04-10T18:30:00.000Z", "hgyp", 4],
["2016-04-10T18:30:00.000Z", "igne", 43],
["2016-04-10T18:30:00.000Z", "igne", 13],
["2016-04-10T18:30:00.000Z", "weight", 54],
["2016-04-10T18:30:00.000Z", "hbk", 50]
]
$scope.sortTable = function() {
$scope.testArray.sort(function(a, b) {
if (a[1] > b[1])
return 1;
if (b[1] > a[1])
return -1;
return 0;
});
}
}]);
在plunker @ https://plnkr.co/edit/B99a28LBGLojcDtuBM2i
上添加了代码向下滚动并单击sortMe按钮。您可以在每次单击按钮时看到表行的更改。
先谢谢。你会制止我的苦难;)
答案 0 :(得分:1)
对于稳定排序,您需要另一个参数,例如第三个元素。
排序仅使用要检查的部分数据,例如回调。如果一个检查返回0
,由于内容相同,排序算法不知道,如果a在b之前或反向。在这种情况下,我们需要另一个属性来决定结果应该在哪个范围内。有关更多详细信息,请访问Wikipedia。
$scope.testArray.sort(function (a, b) {
return a[1].localeCompare(b[1]) || a[2] - b[2];
});
答案 1 :(得分:0)
您在Plunker上的代码工作正常,请再次检查,因为我在点击sortMe按钮后没有发现任何变化