gpt4 book ai didi

javascript - 解构对象——如何以更简洁的方式重写

转载 作者:搜寻专家 更新时间:2023-10-30 22:04:44 24 4
gpt4 key购买 nike

我想知道是否可以简化这段代码并将其写在一行中(我什至可以使用 ES6-7)

const { dimensions } = this.state
const { height} = dimensions
console.log(height)

最佳答案

您可以 destructure a nested structure .

解构内部属性 - 高度:

const state = { dimensions: { width: 200, height: 100 }}

const { dimensions: { height } } = state

console.log(height)

解构外部和内部属性 - 尺寸和高度:

const state = { dimensions: { width: 200, height: 100 }}

const { dimensions, dimensions: { height } } = state

console.log(dimensions)
console.log(height)

关于javascript - 解构对象——如何以更简洁的方式重写,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48425187/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com