ES6合并对象的方法有以下几种:
使用对象展开运算符(…):
const obj1 = {a: 1, b: 2};
const obj2 = {c: 3, d: 4};
const merged = {...obj1, ...obj2};
console.log(merged); // {a: 1, b: 2, c: 3, d: 4}
使用Object.assign()方法:
const obj1 = {a: 1, b: 2};
const obj2 = {c: 3, d: 4};
const merged = Object.assign({}, obj1, obj2);
console.log(merged); // {a: 1, b: 2, c: 3, d: 4}
使用Object.getOwnPropertyDescriptors()方法和Object.defineProperties()方法:
const obj1 = {a: 1, b: 2};
const obj2 = {c: 3, d: 4};
const descriptors = Object.getOwnPropertyDescriptors(obj2);
const merged = Object.defineProperties(obj1, descriptors);
console.log(merged); // {a: 1, b: 2, c: 3, d: 4}
这些方法都可以用来合并多个对象的属性,并创建一个新的对象。
辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
推荐阅读: es6创建对象的方法是什么