码迷,mamicode.com
首页 > 编程语言 > 详细

js sort方法根据数组中对象的某一个属性值进行排序

时间:2020-11-04 17:50:30      阅读:17      评论:0      收藏:0      [点我收藏+]

标签:wait   data   function   func   property   inf   fun   more   ===   

        async getList() {
            await indexmodel.findAllSeller(this.queryInfo, data => {
                console.log(data);
                if (data.length <= 5) {
                    this.loadingType = ‘noMore‘;
                }
                if (this.queryInfo.pageNo === 1) {
                    this.list = data;
                    this.list.sort(this.compare(‘distance‘))
                } else {
                    this.list = this.list.concat(data);
                    this.list.sort(this.compare(‘distance‘))
                }
            });
        },

    // 排序比较
        compare(property){
             return function(a,b){
                    let value1 = a[property];
                    let value2 = b[property];
                    return value1 - value2;
                }
        },
console.log(this.list.sort(this.compare(‘distance‘)))

js sort方法根据数组中对象的某一个属性值进行排序

标签:wait   data   function   func   property   inf   fun   more   ===   

原文地址:https://www.cnblogs.com/2Octobering/p/13920360.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!