ES6中有什么方法可以在一行或更短的时间内执行以下操作?
const { bar } = this.foo;
this.module.func({
bar,
});
我尝试的是以下无效的语法错误。
{ bar }: this.foo, // unexpected token
相关分类