以下示例中
this.uploadData[st]代表需要进行排序的Object
frequence表示Object中根据frequence来排序
1.降序示例
var newObjs = this.uploadData[st].sort(function (a, b) {
return a.frequence < b.frequence ? 1 : -1;
});
结果展示
2.升序示例
var newObjs = this.uploadData[st].sort(function (a, b) {
return a.frequence > b.frequence ? 1 : -1;
});
结果展示