在线观看不卡亚洲电影_亚洲妓女99综合网_91青青青亚洲娱乐在线观看_日韩无码高清综合久久

鍍金池/ 問答/HTML/ input后臺報錯

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...

回答
編輯回答
遲月

這個原因就是受控組件與非受控組件的問題。你在初始的時候?qū)alue的值設置為undefined了。
所以修改為:

<input onChange={e => handleChange('user', e)} value={this.state.data.name || ''} />
2018年1月17日 17:46