Object的rest和spread方法
Posted qjb2404
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Object的rest和spread方法相关的知识,希望对你有一定的参考价值。
//将多个对象合并到一个对象里 const input = { a: 1, b: 2 } const test = { d: 5 } const output = { ...input, ...test, c: 3 } //拆解对象,获取想要的属性 const input = { a: 1, b: 2, c: 3, d: 4, e: 5 } const { a, b, ...rest } = input console.log(a,b,rest)
以上是关于Object的rest和spread方法的主要内容,如果未能解决你的问题,请参考以下文章
ES6数组扩展运算符(Rest+Spread)类方法原型方法
无法使用为 vue cli 3 设置添加的 babel-plugin-transform-object-rest-spread 传播对象