我有以下代码:
constructor(props) {
super(props);
this.state = {
search: "",
value: "",
username:'',
email:'',
password: '',
};
this.onChange = this.onChange.bind(this);
this.onSubmit = this.onSubmit.bind(this);
}
...
...
onChange(e) {
this.setState(
{[e.target.name]: e.target.value})
}
...
...
<input type="password" placeholder="Password"
onChange={e => this.onChange(e)}
value={ this.state.password }
/>
但我无法输入密码字段。如果我删除该value={ this.state.password }
部分,我就可以在该字段中输入内容,但是当该字段更改时,我的状态似乎没有更新。
问题是什么?