Let's say I have a list of plain objects in my this.state.list
that I can then use to render a list of children. What then is the right way to insert object into this.state.list
?
Below is the only way I think it will work because you can not mutate the this.state
directly as mentioned in the doc.
this._list.push(newObject):
this.setState({list: this._list});
This seems ugly to me. Is there a better way?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…