我有一个函数(onClickAddSection),当它被调用时,它应该将状态设置为空字符串,但它根本不会这样做。 请看一下代码并告诉我我做错了什么,谢谢。
class AddNewSectionForm extends Component {
constructor(props) {
super(props);
this.state = {
sectionName: '',
validation:false
};
this.onSectionNameChange = this.onSectionNameChange.bind(this);
this.onClickAddSection = this.onClickAddSection.bind(this);
}
onSectionNameChange(event) {
if(this.state.validation==false){
this.setState({validation:true});
}
this.setState({sectionName: event.target.value});
}
onClickAddSection(event) {
event.preventDefault();
this.props.saveSection(this.state.sectionName);
this.setState({sectionName:'',validation:false});
}
render() {
return (
<div>
<TextInput name="newSection" label="Section Name :"
onChange={this.onSectionNameChange}
value={this.state.sectionName}
error = {this.state.validation==true&& this.state.sectionName.length==0?'Enter Section Name':''}/>
<AddCloseButtons add = {this.onClickAddSection}
close = {this.props.closeCharm}
/>
</div>
);
}
}
onClickAddSection函数不会将sectionName设置回''。
AddCloseButton:
const AddCloseButtons = ({add,close}) => {
return (
<div className="form-group">
<button className="btn btn-primary" style={{width: '40%', border:'solid black 1px'}} onClick={add}>Add</button>
<button className="btn btn-secondary" style={{width: '40%', float: 'right',border:'solid black 1px'}} onClick={close}>Close</button>
</div>);
};
答案 0 :(得分:1)
您使用的是Redux吗?如果是这样,this.props.saveSection会进行任何Ajax调用吗?如果是这样,可能是您使用setState更新本地状态,然后您的Ajax响应重新更新它的接收值?
答案 1 :(得分:0)
只需尝试查看setState
的功能版本。
this.setState(function (state, props) {
return {
sectionName:'',
validation:false
}
});
答案 2 :(得分:0)
当您单击按钮时,onSectionNameChange
和onClickAddSection
似乎同时发生并且会发生冲突(因为名称设置为空白表示其名称正在更改^^),那么如何不在onSectionNameChange
中设置sectionName的状态:
onSectionNameChange(event) {
if(this.state.validation==false){
this.setState({validation:true});
}
//this.setState({sectionName: event.target.value});
}
我想是的,请在这里发布一些错误,谢谢