//constructorthis.state = {value: this.props.data.sid}; handleChange(event) { this.setState({value: event.target.value}); }value的初始值和data.sid的值如何同步,sid发生改变后,vlaue并没有变化//render<input value={this.state.value} onChange={this.handleChange}/>
添加回答
举报
0/150
提交
取消