我有一个React Select表单,在API调用后加载了选项。已设置研讨会的初始状态值,并在表单中单击选项后更新。但是,Select的视图不会更新。更重要的是,提交表单后,研讨会成功保存到数据库中。我该怎么办?
renderForm() {
return (
<section className="col-md-12 col-sm-12">
<form className="col-md-12 col-sm-12"
onSubmit={ this.handleSubmit }>
// other form-groups
<div className="form-group">
<label>
Region:
<input className="form-control"
type="text"
value={ this.state.value }
onChange={ this.handleRegionChange } required />
</label>
</div>
<div className="form-group">
<label>
Workshop:
</label>
<Select name="form-field-workshop"
value={ this.state.workshop }
onChange={ this.handleWorkshopChange }
options={ this.renderFormWorkshops() }
clearable={ false }
searchable={ false }
required />
</div>
<input className="btn btn-default"
type="submit"
value="Submit" />
</form>
</section>
);
}
// handles the change of state when an option is selected
handleWorkshopChange(value) {
this.setState({
workshop: value.label
});
}
// displays the options in the Select form
renderFormWorkshops() {
return _.map(this.props.workshops.workshops, (it) => {
return (
{ value: it.id, label: it.name }
);
});
}
答案 0 :(得分:2)
handleWorkshopChange(value) {
this.setState({
workshop: value.value
});
}
答案 1 :(得分:0)
您是否在构造函数中正确设置了它?这里可能会出现一些上下文问题,这是绑定上下文的正确形式:
constructor(props) {
super(props);
this.handleWorkshopChange = this.handleWorkshopChange.bind(this);
}
如果您不使用箭头功能,则需要为依赖于使用this
方法的情况绑定上下文。
此外,您在这里有一个迷路括号:value={ this.state.workshop) }