排序

作者: 晚安_bd35 | 来源:发表于2019-05-16 16:07 被阅读0次

    中文首字母

    this.dakaManageList.sort((x, y) => {

     return x["name"].localeCompare(y["name"])

     })

    根据时间排序

    this.dakaManageList.sort((a, b) => {

     let aTime = new Date(a.recardTime.replace(/-/g,'/')).getTime()

     let bTime = new Date(b.recardTime.replace(/-/g,'/')).getTime()

       return aTime - bTime

     })

    data{

    list:[],

    arr:[]

    }

    1、获取数组里面多个对象

    let res=await this.getDataState(this.obj)

    this.list =res.data.rows

    let chu;

    this.list.map(item =>{

    chu=item

    return chu

    })

    console.log('chu1',JSON.stringify(chu))

    2、对个对象中的key  把key  push到数组里 在通过数组的索引号拿到你想要的某个key

    for(var key in chu){

    this.arr.push(key)

    // return list

    }

    相关文章

      网友评论

          本文标题:排序

          本文链接:https://www.haomeiwen.com/subject/amviaqtx.html