js 将对象转换为数组,两个对象的属性相同合并相加

1、定义两个对象,属性相同的值相加,并将值赋值为数组中对象属性相同的
  • 定义数组

    var titleDate = [
    {
    name: 'JKJInputQty',
    field: 'restQty',
    icon: config.ossUrl + '/afl-data-screen/images/icon-all-input.png',
    value: 0,
    titleNames: 'JKJInputQty',
    span: 3
    }, {
    name: 'JKJOutputQty',
    field: 'restQty',
    icon: config.ossUrl + '/afl-data-screen/images/icon-takeOut.png',
    value: 0,
    titleNames: 'JKJOutputQty',
    span: 3
    }, {
    name:'PEOutputQty',
    field: 'restQty',
    icon: config.ossUrl + '/afl-data-screen/images/icon-output.png',
    value: 0,
    titleNames: 'PEOutputQty',
    span: 3
    }, {
    name: 'abnormalCause',
    field: 'restQty',
    icon: config.ossUrl + '/afl-data-screen/images/icon-search.png',
    cause: '',
    titleNames: 'AbnormalCause',
    span: 5
    }]

  • 定义两个对象

    var ProductDataByDayofLine1= {
    "JKJInputQty": 3276,
    "JKJOutputQty": 9890,
    "PEOutputQty": 8442,
    "DROutputQty": 10584,
    "JKJOutputDifferenceQty": 6614,
    "PEOutputDifferenceQty": 0,
    "DROutputDifferenceQty": 2142,
    "AbnormalCause": "JKJ产出数量大于投入数量DR产出数量大于PE产出数量"
    }
    var ProductDataByDayofLine2= {
    "JKJInputQty": 0,
    "JKJOutputQty": 0,
    "PEOutputQty": 0,
    "DROutputQty": 0,
    "JKJOutputDifferenceQty": 0,
    "PEOutputDifferenceQty": 0,
    "DROutputDifferenceQty": 0,
    "AbnormalCause": ""
    },

  • 将连个对象合并相加

    const keys = Object.keys(ProductDataByDayofLine1)
    keys.forEach((name, index) => {
    titleDate.forEach(item => {
    if (name === item.titleNames && index < 4) {
    item.value = Number(ProductDataByDayofLine1[name]) + Number(ProductDataByDayofLine2[name])
    }
    if (name === item.titleNames && item.titleNames === 'JKJOutputDifferenceQty') {
    // Number() 将值转换类型为数字类型
    const a = Number(ProductDataByDayofLine1[name]) + Number(ProductDataByDayofLine2[name])
    const b = Number(ProductDataByDayofLine1.PEOutputDifferenceQty) + Number(ProductDataByDayofLine2.PEOutputDifferenceQty)
    const c = Number(ProductDataByDayofLine1.DROutputDifferenceQty) + Number(ProductDataByDayofLine2.DROutputDifferenceQty)
    item.value = a + b + c
    }
    //特定的判断条件去添加到titleDate数组属性中
    if (name === item.titleNames && item.titleNames === 'AbnormalCause') {
    item.cause = res.ProductDataByDayofLine1[name] + ProductDataByDayofLine2[name]
    }
    })
    })

2、将对象转换为数组并合并对象

数据格式为

复制代码
var ProductDataByHourofLine1= {
        "HourOne": {
            "JKJInputQty": 0,
            "JKJOutputQty": 0,
            "PEOutputQty": 0,
            "DROutputQty": 0,
            "JKJOutputDifferenceQty": 0,
            "PEOutputDifferenceQty": 0,
            "DROutputDifferenceQty": 0,
            "AbnormalCause": null
        },
        "HourTwo": {
            "JKJInputQty": 0,
            "JKJOutputQty": 0,
            "PEOutputQty": 0,
            "DROutputQty": 0,
            "JKJOutputDifferenceQty": 0,
            "PEOutputDifferenceQty": 0,
            "DROutputDifferenceQty": 0,
            "AbnormalCause": null
        },
        "HourThree": {
            "JKJInputQty": 0,
            "JKJOutputQty": 0,
            "PEOutputQty": 0,
            "DROutputQty": 0,
            "JKJOutputDifferenceQty": 0,
            "PEOutputDifferenceQty": 0,
            "DROutputDifferenceQty": 0,
            "AbnormalCause": null
        },
        "HourFour": {
            "JKJInputQty": 0,
            "JKJOutputQty": 0,
            "PEOutputQty": 0,
            "DROutputQty": 0,
            "JKJOutputDifferenceQty": 0,
            "PEOutputDifferenceQty": 0,
            "DROutputDifferenceQty": 0,
            "AbnormalCause": null
        },
        
}

var ProductDataByHourofLine2= {
        "HourOne": {
            "JKJInputQty": 0,
            "JKJOutputQty": 0,
            "PEOutputQty": 0,
            "DROutputQty": 0,
            "JKJOutputDifferenceQty": 0,
            "PEOutputDifferenceQty": 0,
            "DROutputDifferenceQty": 0,
            "AbnormalCause": null
        },
        "HourTwo": {
            "JKJInputQty": 0,
            "JKJOutputQty": 0,
            "PEOutputQty": 0,
            "DROutputQty": 0,
            "JKJOutputDifferenceQty": 0,
            "PEOutputDifferenceQty": 0,
            "DROutputDifferenceQty": 0,
            "AbnormalCause": null
        }
      //......后面定义省略
}
  • 转换对象并添加到新的数组中

    let arr=[]
    let arr2=[]
    Object.entries(ProductDataByHourofLine1).forEach((item, index) => {
    if (item[0] === 'HourOne') {
    item[1].TimePeriod = '00:00 ~ 01:00'
    arr.push(item[1])
    }
    if (item[0] === 'HourTwo') {
    item[1].TimePeriod = '01:00 ~ 02:00'
    arr.push(item[1])
    }
    if (item[0] === 'HourThree') {
    item[1].TimePeriod = '02:00 ~ 03:00'
    arr.push(item[1])
    }
    if (item[0] === 'HourFour') {
    item[1].TimePeriod = '03:00 ~ 04:00'
    arr.push(item[1])
    }
    })

    Object.entries(ProductDataByHourofLine2).forEach((item, index) => {
    if (item[0] === 'HourOne') {
    item[1].TimePeriod = '00:00 ~ 01:00'
    arr2.push(item[1])
    }
    if (item[0] === 'HourTwo') {
    item[1].TimePeriod = '01:00 ~ 02:00'
    arr2.push(item[1])
    }
    if (item[0] === 'HourThree') {
    item[1].TimePeriod = '02:00 ~ 03:00'
    arr2.push(item[1])
    }
    if (item[0] === 'HourFour') {
    item[1].TimePeriod = '03:00 ~ 04:00'
    arr2.push(item[1])
    }
    })

  • 将两个数组中对象相同的合并相加 到某一个数组的属性上

    arr.forEach((item, index) => {
    var item2 = arr2[index]
    var a = Object.keys(item)
    var b = Object.keys(item2)
    a.forEach((x, index) => {
    if (x === b[index] && x !== 'TimePeriod') {
    item[x] = Number(item[x]) + Number(item2[x])
    }
    })
    })

相关推荐
Daybreak13 小时前
Mobile 端 AI 请求真机调试:从"线上没日志"到四层问题定位
前端
Wect14 小时前
LeetCode 97. 交错字符串:动态规划详解
前端·算法·typescript
木斯佳14 小时前
前端八股文面经大全:字节暑期前端一面(2026-04-24)·面经深度解析
前端
凯瑟琳.奥古斯特14 小时前
Redis是什么及核心特性
前端·css·redis·缓存
架构源启14 小时前
OpenClaw 只能手动写脚本?我用 Chrome 插件实现了“录制即生成“
前端·人工智能·chrome·自动化
DFT计算杂谈14 小时前
VASP官方教程 TRIQS DFT+DMFT计算教程
运维·css·自动化·html·css3
yingyima14 小时前
正则表达式实战:如何高效清洗脏数据
前端
兔子零102414 小时前
Ofox AI值得用吗?
前端·javascript·后端
We་ct15 小时前
React 性能优化精讲
前端·javascript·react.js·性能优化·前端框架·html·浏览器
云动课堂15 小时前
【运维实战】Nginx 高性能Web服务 · 一键自动化部署方案 (适配银河麒麟 V10 / openEuler / CentOS 7/8)
运维·前端·nginx