受控(受react控制) 组件的写法,通过value属性与onchange事件来实现
<input
className="new-todo"
placeholder="接下来打算做点啥?"
autoFocus
value={this.state.content}
onChange={(e) => {
this.setState({
content: e.target.value
})
}}
onKeyUp={this.keyUp}
/>