我正在onChange
对输入事件发送一个 redux 操作,以添加到 Redux 状态上的一些“答案”数组。
一切正常,Redux 存储更新,但问题是在设置input
值以反映 Redux 存储中的更改时,它在控制台中给我一个错误,说...
Warning: A component is changing an uncontrolled input of type number to be controlled.
这是一个代码框来演示这个问题......
https://codesandbox.io/s/controlled-input-issue-p2k74
我怎样才能input
控制它,但通过 Redux 存储,而不是本地状态?