zoukankan      html  css  js  c++  java
  • js sort方法根据数组中对象的某一个属性值进行排序

            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')))

  • 相关阅读:
    自动化测试
    django
    Linux软件推荐
    deepin升级20.1(2021.3)
    struts_自定义日期类型转换器
    struts_01
    JAVA面向对象思想
    springmvc 文件上传
    ajax+struts2 实现省份-城市-地区三级联动
    mybatis——分页插件
  • 原文地址:https://www.cnblogs.com/2Octobering/p/13920360.html
Copyright © 2011-2022 走看看