例如对
[{
'pimg': 'images/award4.png',
'pname': 'xxxx模型'
}, {
'pimg': 'images/award3.png',
'pname': '休闲户外衣服'
}, {
'pimg': 'images/award3.png',
'pname': '精致日版动漫挂扣'
}, {
'pimg': 'images/award2.png',
'pname': '炫酷耳机'
}
]
这样一个数组进行sort排序,具体是先用哪个跟哪个对比,如何判断先后?
The sort() method sorts the elements of an array in place and returns the array. The sort is not necessarily stable. The default sort order is according to string Unicode code points.
arr.sort([compareFunction])
compareFunction
Optional. Specifies a function that defines the sort order. If omitted, the array is sorted according to each character's Unicode code point value, according to the string conversion of each element.
sort方法如果不提供compareFunction比较函数,那么就把数组中的元素转成字符串后按字符的Unicode码点进行比较。元素按不同的类型转成字符串的结果是不同的,对于JSON格式对象来说,其转换的结果就是[object Object]。
故问题中的数组sort后的结果是没有变化
可以传入一个自定义的比较函数来进行你想要的排序结果
var tempArray=[{
'pimg': 'images/award4.png',
'pname': 'xxxx模型'
}, {
'pimg': 'Zimages/award3.png',
'pname': '休闲户外衣服'
}, {
'pimg': 'images/award3.png',
'pname': '精致日版动漫挂扣'
}, {
'pimg': 'images/award2.png',
'pname': '炫酷耳机'
}
];
tempArray.sort();
console.log(tempArray);
tempArray.sort(function(a,b){
if(a["pimg"]===b["pimg"]){
if(a["pname"]>b["pname"]){
return 1;
}else if(a["pname"]<b["pname"]){
return -1;
}else{
return 0;
}
}else{
if(a["pimg"]>b["pimg"]){
return 1;
}else{
return -1;
}
}
});
console.log(tempArray);
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。