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

JavaScript按照对象的某个属性进行排序

时间:2020-10-10 18:06:34      阅读:55      评论:0      收藏:0      [点我收藏+]

标签:dex   bsp   tar   detail   color   obj   return   offline   http   

参考:https://blog.csdn.net/giser_whu/article/details/51485635

CompanyIndex({ _with: ‘location‘ })
        .then((res) => {
          if (res.data && res.success) {
            // this.companyList = res.data
            const companyList1 = res.data
            function sortBy(obj1, obj2) {
              const val1 = obj1.offline_reader_count
              const val2 = obj2.offline_reader_count
              if (val1 < val2) {
                return 1
              } else if (val1 > val2) {
                return -1
              } else {
                return 0
              }
            }
            this.companyList = companyList1.sort(sortBy)
            // this.companyList = res.data
            setTimeout(() => {
              this.loading = false
            }, 600)
          }
        })

 

JavaScript按照对象的某个属性进行排序

标签:dex   bsp   tar   detail   color   obj   return   offline   http   

原文地址:https://www.cnblogs.com/hahahakc/p/13792766.html

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