我可以在setstate的回调函数中使用setstate吗 '''this.setstate(update,function(){this.setstate} .bind)''' 上面给出的代码正确无误吗?
答案 0 :(得分:0)
this.setState({
someState: newValue,
}, callback);
以上代码在setState中使用回调函数。
所以您可以编写这样的代码。
this.setState({
someState: newValue,
}, () => {
// some code you want
});