We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
新增一个待办事项后将新建的待办事项切换为已完成状态,将会出现警告。原因应该是初始渲染<input>时没有设置value属性。
<input>
value
react-and-redux/chapter-04/todo/src/todos/views/todoItem.js
Line 4 in 9cbeab9
应该修改为:const checkedProp = completed ? {checked: true} : {checked: false};
const checkedProp = completed ? {checked: true} : {checked: false};
另一个示例程序一样:
react-and-redux/chapter-04/todo_controlled_component/src/todos/views/todoItem.js