为了账号安全,请及时绑定邮箱和手机立即绑定

关于数组 js

关于数组 js

函数式编程 2019-03-14 18:15:56
let columns = ["name", "age", "weight"] // 里面的值是接口请求回来的,不固定有多少个的let  data = [["jack", 18, 50],["jenny", 22, 60]] let  arr = []//最后结果我想要这样的[ {"name": "jack","age": 18,"weight": 50},{"name": "jenny","age": 22,"weight": 60},{"name": "合计","age": 40,"weight": 110}]{"name": "合计","age": 40,"weight": 110} 最后一个是age跟weight进行累积相加push到数组中
查看完整描述

3 回答

?
一只萌萌小番薯

TA贡献1795条经验 获得超7个赞

        //reduce的初始值

        const initValue = {}

        columns.forEach((param, index) => initValue[param] = index == 0 ? '合计' : 0);


        data.reduce((total, current, index) => {

            //合计累加

            const item = {}

            columns.forEach((param, index) => {

                item[param] = current[index]

                //不是name的话,累加

                if (index != 0) total[param] += current[index]

            })

            //把current push到arr

            arr.push(item)


            //最后一次循环时,把total push到arr

            if (index == data.length - 1) arr.push(total)

            return total

        }, initValue)


查看完整回答
反对 回复 2019-04-09
?
叮当猫咪

TA贡献1776条经验 获得超12个赞

let all = {

  name: "合计",

  age: 0,

  weight: 0

}


data.forEach(item => {

  arr.push(

    {

      name: item[0],

      age: item[1],

      weight: item[2]

    };

  all.age = all.age + item[1];

  all.weight = all.weight + item[2];

});

arr.push(all);


查看完整回答
反对 回复 2019-04-09
?
明月笑刀无情

TA贡献1828条经验 获得超4个赞

const summary = data.reduce((carry, item) => {

  arr.push({

    [columns[0]]: item[0],

    [columns[1]]: item[1],

    [columns[2]]: item[2],

  });


  carry[1] += item[1];

  carry[2] += item[2];

}, ['合计', 0 , 0]);


arr.push(summary);


查看完整回答
反对 回复 2019-04-09
  • 3 回答
  • 0 关注
  • 433 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信