我正在学习react.js。我有一个对象文字,我试图根据从选择输入中选择的内容动态选择对象内的对象。然而,我正在变得不确定。我试过点和括号表示法。我成功地获取了所选选项的值并将其存储在变量中。有什么想法吗?
这是我的目标:
var horoList = {
aries: {
title: "JerkFace",
},
cancer: {
title: "Cancerous",
},
gemini : {
title: "GoofBall"
}
} ;
以下是我在渲染方法中的一些JSX:
<select name="pick-sign" onChange={this.handleChange}>
<option></option>
<option value="aries" >Aries</option>
<option value="cancer" >Cancer</option>
<option value="gemini" >Gemini</option>
<option value="taurus" >Taurus</option>
</select>
这是我的句柄更改方法:
handleChange: function(e) {
var selectedHoro = e.target.value;
console.log(selectedHoro); //outputs: aries
console.log(horoList); //outputs: Object {aries: Object, cancer: Object, gemini: Object}
console.log(horoList.aries); //ouputs: Object {title: "JerkFace"}
console.log(horoList['selectedHoro']); //outputs: undefined
// this.setState({
// horos: horoList.selectedHoro
// });
},
答案 0 :(得分:3)
如果您更改此行:
console.log(horoList['selectedHoro']); //outputs: undefined
要:
console.log(horoList[selectedHoro]);
你应该得到预期的输出。使用horoList['selectedHoro']
时,会使用文字字符串值selectedHoro
,因此它将为horoList.selectedHoro
。当您使用horoList[selectedHoro]
时,selectedHoro
是一个变量,它的值用于确定您要解析的属性名称,以便它解析为horoList.aeries
(当{{1}时}} === selectedHoro
)。