input后台报错

图片描述

bundle.js:176418 Warning: A component is changing an uncontrolled input of type text to be controlled. Input elements should not switch from uncontrolled to controlled (or vice versa). Decide between using a controlled or uncontrolled input element for the lifetime of the component. More info: https://fb.me/react-controlle...

阅读 1.9k
1 个回答

这个原因就是受控组件与非受控组件的问题。你在初始的时候将value的值设置为undefined了。
所以修改为:

<input onChange={e => handleChange('user', e)} value={this.state.data.name || ''} />
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题