增强对象文字中的对象分解

ES6中有什么方法可以在一行或更短的时间内执行以下操作?


const { bar } = this.foo;

this.module.func({

  bar,

});

我尝试的是以下无效的语法错误。


const { bar } = this.foo;

this.module.func({

  { bar }: this.foo, // unexpected token

});


拉莫斯之舞
浏览 103回答 1
1回答
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript