我在React页面中有动态表单元素,并且不确定将状态的所有输入值或任何其他可能的解决方案读取的最佳方法是什么。请提出建议。
render() {
{
answer.map((item) => {
const code = item.code;
const question = item.question;
return (
<View>
<FormLabel labelStyle= {{
color : '#000',
fontSize: 20
}}>{question}</FormLabel>
<FormInput name={code} />
</View>
);
})
}
}
答案 0 :(得分:0)
下面的代码有效,
<FormInput name={code} onChangeText={(value) => this.setState({[code]: value})} />
谢谢, 拉贾K