对象数组的排序

举例如下一个数组:
var testArr=[ {'name':'Alec','score':78}, {'name':'Tina','score':8}, {'name':'Jack','score':38}, {'name':'Peter','score':48} ]
若要依照数组中每个元素的score为标准进行升序或降序排序,有如下封装方法实现:
var compare = function (prop,type) { return function (obj1, obj2) { var val1 = obj1[prop]; var val2 = obj2[prop]; if (!isNaN(Number(val1)) && !isNaN(Number(val2))) { val1 = Number(val1); val2 = Number(val2); } //递增 if(type==1){ if (val1 < val2) { return -1; } else if (val1 > val2) { return 1; } else { return 0; } }else if(type==-1){ if (val1 < val2) { return 1; } else if (val1 > val2) { return -1; } else { return 0; } } } }
对数组调用
testArr.sort(compare('score',1))
则得到如下结果,完成递增排序

对象数组的排序_第1张图片
图片.png

你可能感兴趣的:(对象数组的排序)