Qual è il modello consigliato per eseguire un setState su un genitore da un componente figlio.
var Todos = React.createClass({
getInitialState: function() {
return {
todos: [
"I am done",
"I am not done"
]
}
},
render: function() {
var todos = this.state.todos.map(function(todo) {
return <div>{todo}</div>;
});
return <div>
<h3>Todo(s)</h3>
{todos}
<TodoForm />
</div>;
}
});
var TodoForm = React.createClass({
getInitialState: function() {
return {
todoInput: ""
}
},
handleOnChange: function(e) {
e.preventDefault();
this.setState({todoInput: e.target.value});
},
handleClick: function(e) {
e.preventDefault();
//add the new todo item
},
render: function() {
return <div>
<br />
<input type="text" value={this.state.todoInput} onChange={this.handleOnChange} />
<button onClick={this.handleClick}>Add Todo</button>
</div>;
}
});
React.render(<Todos />, document.body)
Ho una serie di cose da fare che viene mantenuta nello stato del genitore. Voglio accedere lo stato del genitore e aggiungere un nuovo elemento todo, dal TodoForm
's handleClick
componente. La mia idea è di fare un setState sul genitore, che renderà l'elemento todo appena aggiunto.