使用 ES2015 处理数组
栏目: JavaScript · 发布时间: 5年前
内容简介:取出数组所有元素中某个将增删所有元素中的
Array.map()
取出数组所有元素中某个 字段
const channels = [ {"id": 4, "title": "文化", "platform": "app", "type": "channel", "ordering": 4}, {"id": 1, "title": "推荐", "platform": "app", "type": "channel", "ordering": 1}, {"id": 7, "title": "人物", "platform": "app", "type": "channel", "ordering": 5} ] const mapped = channels.map(item => item.title) console.log(mapped) > Array ["文化", "推荐", "人物"]
将 callback
函数返回值组成一个数组,这里 ES6 箭头写法省略了 return
增删所有元素中的 字段
const channels = [ {"id": 4, "title": "文化", "platform": "app", "type": "channel", "ordering": 4}, {"id": 1, "title": "推荐", "platform": "app", "type": "channel", "ordering": 1}, {"id": 7, "title": "人物", "platform": "app", "type": "channel", "ordering": 5} ] const mapped = channels.map(item => { const { platform, ordering, ...rest } = item return { ...rest, author: '', link: `//www.adc.com/channel/${item.id}` } }) console.log(mapped) > Array [ Object { id: 4, title: "文化", type: "channel", author: "", link: "//www.adc.com/channel/4" }, Object { id: 1, title: "推荐", type: "channel", author: "", link: "//www.adc.com/channel/1" }, Object { id: 7, title: "人物", type: "channel", author: "", link: "//www.adc.com/channel/7" } ]
配合扩展运算符、 rest
参数、对象解构将需要的字段重新组合成新的数组。
Array.find()
找到数组元素中某 符合项
const status = [ { id: "3", name: "草稿" }, { id: "0", name: "未发布" }, { id: "1", name: "已发布" }, { id: "2", name: "等待发布" }, { id: "4", name: "已撤稿" }, ] const item_status = 1 status.find(option => option.id == item_status) > Object { id: "1", name: "已发布" }
Array.filter()
取出数组元素中 适合的元素
const channels = [ { "id": 4, "title": "文化", "platform": "pc", "type": "channel", "ordering": 4}, { "id": 1, "title": "推荐", "platform": "app", "type": "channel", "ordering": 1}, { "id": 7, "title": "人物", "platform": "app", "type": "channel", "ordering": 5} ] channels.filter(item => { return item.platform === 'pc' && item.type === 'channel' }) > Array [Object { id: 4, title: "文化", platform: "pc", type: "channel", ordering: 4 }]
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网
猜你喜欢:- 在项目实践中用更优雅的方式处理数组问题
- js处理大数据数组循环的一些性能优化
- 深入解析 C++ 中的字符数组和处理字符串的方法
- 关于ES6数组方法在低版本浏览器处理
- C语言指针数组和数组指针
- 数组 – 如何在Swift中将数组拆分成两半?
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
创业的艺术2.0
〔美〕盖伊·川崎 / 刘悦、段歆玥 / 译言·东西文库/电子工业出版社 / 2016-9 / 68
“创业者导师”——盖伊•川崎的《创业的艺术2.0》被阿丽亚娜•赫芬顿评为“终极的创业手册”。无论您是企业家、小企业主、企业开拓者还是非盈利组织的领导人,都可以让你的产品、服务或理念获得成功。 盖伊选取了不用角度,探索前十年商界的巨大变化,并寻求解决之道。曾经所向披靡的市场巨头深陷水深火热之中,社交媒体也取代了人际关系和广告,成为营销推广的主要渠道。众筹也成为广大投资者的可行之举。“云”更是每......一起来看看 《创业的艺术2.0》 这本书的介绍吧!