美文网首页
数组方法

数组方法

作者: Weldon_ | 来源:发表于2018-02-13 21:59 被阅读0次

1.汇总数据

 const customer = [
{id: 1, count: 2},
{id: 2, count: 89},
{id: 3, count: 1}
];
function getSum(total, currentValue, current, arr) {
    // total每次返回计算之后相加的总和,currentValue当前的元素,current当前的序号,arr当前的数组
    debugger;
    return total + currentValue.count
}
const totalCount = customer.reduce(getSum, 0) // 表示total的初始值
console.log(totalCount); // 返回计算的结果

2.改变数据结构

let produts = [
    {
        id: '123',
        name: '苹果'
    },
    {
        id: '345',
        name: '橘子'
    }
];
  // reduce改变数据结构
const produtsById = produts.reduce(
    (obj, product) => {
        obj[product.id] = product.name
        return obj
    },
    {}
);
console.log('[result]:', produtsById)  // {123:'苹果', 345: '橘子'}

3.对象装换query字符串

const params = {
    color: 'red',
    minPrice: 8000,
    maxPrice: 10000,
}
const query = '?' + Object.keys(params) // 返回对象key的数组
.map(k => encodeURIComponent(k) + '=' + encodeURIComponent(params[k])).join('&');
console.log(query) // ?color=red&minPrice=8000&maxPrice=10000
  1. 搜索匹配的数组元素
 const posts = [
    {id: 1, title: 'Title 1'},
    {id: 2, title: 'Title 2'},
];
const title = posts.find(p => p.id === 1); // 过滤元素(返回对象匹配的第一个元素)
console.log(title)
/*
  和filter区别:
  filter返回是数组,返回满足条件的所有元素
  find返回的是对象,返回满足条件的第一个元素
*/

5.返回匹配的对象数组元素的index

const posts = [
    {id: 1, title: 'Title 1'},
    {id: 2, title: 'Title 2'},
    {id: 22, title: 'Title 22'}
];

const index = posts.findIndex(p => p.id === 22); // 2

6.删除某个字段

const user = {
    name: 'wuXiaoHui',
    age: '25',
    password: '19931102',
}

const userWithoutPassword = Object.keys(user) // 返回user里面key的数组
            .filter(key => key !== 'password') // 原数组筛选调特定的字段
            .map((key, value) => ({[key]: user[key]})) // 每个数组元素进行处理,返回对象数组
            .reduce((accumulator, current) => ({...accumulator, ...current}), {}); // reduce进行对象的拼接

            console.log(userWithoutPassword)

相关文章

  • 数组基础

    数组基础 新建数组 数组方法和属性 数组常用方法 数组的遍历方法

  • JavaScript数组中的22个常用方法

    数组总共有22种方法,本文将其分为对象继承方法、数组转换方法、栈和队列方法、数组排序方法、数组拼接方法、创建子数组...

  • js数组方法

    数组总共有22种方法,本文将其分为对象继承方法、数组转换方法、栈和队列方法、数组排序方法、数组拼接方法、创建子数组...

  • JavaScript迭代

    遍历对象 方法1 方法2 遍历数组 方法1 方法2 方法3 map数组 filter数组 reduce数组 找到某...

  • js数组的方法

    数组方法 下面开始介绍数组的方法,数组的方法有数组原型方法,也有从object对象继承来的方法,这里我们只介绍数组...

  • 数组基础

    数组基础 新建数组 数组方法和属性 数组合并 数组常用方法

  • js高级程序设计笔记9

    数组方法 数组迭代方法 every() filter() forEach() map() some() 数组归并方法

  • Javascript Array对象属性

    前面的话 数组总共有22种方法,本文将其分为对象继承方法、数组转换方法、栈和队列方法、数组排序方法、数组拼接方法、...

  • 数组方法

    数组的方法有数组原型方法,也有从object对象继承来的方法,这里我们只介绍数组的原型方法,数组原型方法主要有以下...

  • ES5新增方法

    1. 数组方法forEach遍历数组 2. 数组方法filter过滤数组 3. 数组方法some 4. some和...

网友评论

      本文标题:数组方法

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