js对象操作,求解答

发布于 2022-09-13 01:18:22 字数 533 浏览 19 评论 0

{
  a:{ 
     b1: '哈哈哈11111' ,
     b4: '哈哈哈2' ,
  },
  c:{
    c1: 'dadada'
  },
  e: '哈哈哈55555',
  f: '哈哈哈6',
  h: '哈哈哈777'
}


{
  a:{ 
    b1: '哈哈哈',
     b2: '哈哈哈2',
     b3: '哈哈哈3',
  },
  e: '哈哈哈5',
  f: '哈哈哈6',
}

{
  a:{ 
     b1: '哈哈哈11111' ,
     b2: '哈哈哈2' ,
    b3: '哈哈哈3' ,
     b4: '哈哈哈2' ,
  },
  c:{
    c1: 'dadada'
  },
  e: '哈哈哈55555',
  f: '哈哈哈6',
  h: '哈哈哈777'
}

如上,有对象一和对象二,最终想输出对象三,通过js怎么去实现呢?
也就是以对象一为准,对象一和二都有的key,就直接替换成对象一的value,对象一有,对象二没有,就直接加到对象二里面,谢谢各位大佬。菜鸟一个,不知道怎么处理递归

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

独木成林 2022-09-20 01:18:22
function assiginObj(target = {},sources= {}){
    let obj = target;
    if(typeof target != 'object' || typeof sources != 'object'){
        return sources;
    }
    for(let key in sources){ 
        if(target.hasOwnProperty(key)){
            obj[key] = assiginObj(target[key],sources[key]);
        } else {
            obj[key] = sources[key];
        }
    }
    return obj;
}
let a = {
  a:{ 
    b1: '哈哈哈',
     b2: '哈哈哈2',
     b3: '哈哈哈3',
  },
  e: '哈哈哈5',
  f: '哈哈哈6',
}
let b = {
  a:{ 
     b1: '哈哈哈11111' ,
     b4: '哈哈哈2' ,
  },
  c:{
    c1: 'dadada'
  },
  e: '哈哈哈55555',
  f: '哈哈哈6',
  h: '哈哈哈777'
}
console.log(assiginObj(a,b))
白云不回头 2022-09-20 01:18:22

a = {xxxx}
b = {xxxx}

let merged = {...b, ...a}

https://stackoverflow.com/a/1...

韵柒 2022-09-20 01:18:22

这种东西肯定不能帮你写代码,所以只能提示你两点,不会的话就赶紧去学:

1、遍历对象属性
2、递归

2022-09-20 01:18:22
let obj1 ={
  a:{ 
     b1: '哈哈哈11111',b4: '哈哈哈2' 
  },
  c:{
    c1: 'dadada'
  },
  e: '哈哈哈55555',
  f: '哈哈哈6',
  h: '哈哈哈777'
}


let obj2 ={
  a:{ 
     b1: '哈哈哈' , b2: '哈哈哈2',  b3: '哈哈哈3'
  },
  e: '哈哈哈5',
  f: '哈哈哈6',
}

let obj3 ={
  a:{ 
    b1: '哈哈哈11111' ,b2: '哈哈哈2', b3: '哈哈哈3', b4: '哈哈哈2'
  },
  c:{
    c1: 'dadada'
  },
  e: '哈哈哈55555',
  f: '哈哈哈6',
  h: '哈哈哈777'
}
const isType = (value, type)=> Object.prototype.toString.call(value) === `[object ${type}]`;
// 将 obj2 合并到 obj1
const deep=(obj1,obj2)=> (Object.entries(obj2).forEach(([key,val])=>obj1[key] = isType(obj1[key],'Object') ? deep(obj1[key],obj2[key]) : val),obj1)
deep(obj2,obj1);

image.png

埋葬我深情 2022-09-20 01:18:22

function getAssign(obj) {

return [...new Set(`${Array.from(arguments).map(item => Object.keys(item))}`.split(','))].reduce((total, item) => ({
    ...total, [item]: Array.from(arguments).reduce((t, j) => { if (typeof j[item] === 'object') { return { ...getAssign(j[item]), ...t} } else { return Array.from(arguments)[0][item] } },{})
}), {})

}

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文