小程序过滤数据最简便的方法 filter

2021/4/14 22:29:15

本文主要是介绍小程序过滤数据最简便的方法 filter,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

使用filter进行过滤

例:

通过id匹配要用的数据
hoperightList().then(res=>{ this.setData({ rightList:res, quactionList:res.filter(e=> e.categoryId===36196), shopingList:res.filter(e=> e.categoryId===36197), dingdanList:res.filter(e=> e.categoryId===36198), xieyiList:res.filter(e=> e.categoryId===36203), }) })

总结:

filter(e=>e.需要匹配的条件)*



这篇关于小程序过滤数据最简便的方法 filter的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程