onchangeGoodR=(e)=>{
console.log(e.target.value)
this.setState({
GoodRValue : e.target.value
})
}
<Input
style={{flex:"1",marginLeft:"5px",}}
size="small"
defaultValue={item.classGoodRemind}
onChange={this.onchangeGoodR}
onFocus={this.onFocusGoodR}
onBlur={()=>this.onBlurGoodR(item)}
/>
不知道什么原因! 这里的输入框 输不进东西!
太可怕了
只要把this.setState这段去掉就可以输入
同一个页面的Input就是这样子写的为什么这里就不能用了呢??