对象解构:如何使用中间嵌套 属性
object destructuring: how to use intermediate nested property
var { iWantThis: { andThis, andThisToo } } = x;
有没有办法在一个解构调用中访问所有三个?我想避免像这样的两次调用:
var { iWantThis } = x;
var { andThis, andThisToo } = iWantThis;
我能想到的最接近的是:
var { iWantThis, iWantThis: { andThis, andThisToo } } = x;
虽然我会使用 let
,但如果我使用 ES6 ;)
var { iWantThis: { andThis, andThisToo } } = x;
有没有办法在一个解构调用中访问所有三个?我想避免像这样的两次调用:
var { iWantThis } = x;
var { andThis, andThisToo } = iWantThis;
我能想到的最接近的是:
var { iWantThis, iWantThis: { andThis, andThisToo } } = x;
虽然我会使用 let
,但如果我使用 ES6 ;)