对不起,我知道这确实是一个愚蠢的问题,但是经过几轮谷歌搜索后,我找不到答案。代码如下:
let x = 0
// After some calculation I know the obj should be:
const obj = {'x': 1 }
// Then how to destructuring assigment at this line
{ x } = obj // this is incorrect
// But if I use: x = obj.x, ESLint warns me: [eslint] Use object destructuring. (prefer-destructuring)
console.log(x);
所以我的问题是在定义x
之后如何使用解构分配。
答案 0 :(得分:0)
初始化和销毁应该在同一行中进行。如果要设置初始值,为什么不使用default value
分配。
let { x = 0 } = obj