微信小程序——列表遍历排序方法

转载
微信小程序——列表遍历排序方法

这里我们对itemList数组数据进行排序,排序是依据DealCount这个字段来从小到大排序,

that.setData({

itemList: that.data.itemList.sort(that.compare(“DealCount”)),

})

一般排序需要从大到小倒序排序,这个时候我们直接将上面的代码加上.reverse()进行倒序排序就可以了。

that.setData({

itemList: that.data.itemList.sort(that.compare(“DealCount”)).reverse(),

})

你可能感兴趣的:(微信小程序)