合并对象
从两个或多个对象的组合中创建一个新对象。
- 使用
Array.prototype.reduce()
结合Object.keys()
来遍历所有对象和键。 - 使用
Object.prototype.hasOwnProperty()
和Array.prototype.concat()
来追加存在于多个对象中的键的值。
const merge = (...objs) =>
[...objs].reduce(
(acc, obj) =>
Object.keys(obj).reduce((a, k) => {
acc[k] = acc.hasOwnProperty(k)
? [].concat(acc[k]).concat(obj[k])
: obj[k];
return acc;
}, {}),
{}
);
const object = {
a: [{ x: 2 }, { y: 4 }],
b: 1
};
const other = {
a: { z: 3 },
b: [2, 3],
c: 'foo'
};
merge(object, other);
// { a: [ { x: 2 }, { y: 4 }, { z: 3 } ], b: [ 1, 2, 3 ], c: 'foo' }