本文教程操作环境:windows7系统、jquery3.2.1版本,DELL G3电脑。
1、Object.assign() 方法
用于将所有可枚举属性的值从一个或多个源对象复制到目标对象。它将返回目标对象。
使用语法
Object.assign(target, ...sources)
参数
target: 目标对象
sources: 源对象
返回值
目标对象
使用Object.assign() 方法合并对象
//a. 复制一个对象<br>var obj = { a: 1 ,b:2}; var copyObj = Object.assign({}, obj); console.log(copyObj); // { a: 1,b:2 }<br><br>//b.合并多个对象 复制代码
2、扩展运算符
const summary = {...person, ...tools, ...attributes}; console.log(summary);
以上就是使用es6语法合并对象的两种方法,希望能帮到你哦~更多js学习:js教程。