gpt4 book ai didi

javascript - React 使用对象值作为状态变量名称

转载 作者:行者123 更新时间:2023-12-01 01:13:26 42 4
gpt4 key购买 nike

我想使用一个对象的值来访问状态变量名称

例如:

const displayName = [
{
name: 'name', //Actually this is the state variable name
displayText: 'Name: '
},
{
name: 'email',
displayText: 'E-mail ID: '
}
]

{
displayName.map(obj => (
<p>{obj.displayText}</p>
<div>
{this.state.data.obj.name} //Here am facing issue. The state variables are: this.state.data.name and this.state.data.email. How to replace the obj.name here
</div>
)
}

状态变量是:this.state.data.name 和 this.state.data.email。如何替换此处的 obj.name

如果我给出{this.state.data.obj.name},它会抛出一个错误,例如找不到名称

最佳答案

当使用变量作为键时,需要使用方括号

this.state.data[obj.name]

在方括号中,您的解决方案要求:

this.state['data']['obj']['name']

关于javascript - React 使用对象值作为状态变量名称,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54974299/

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