在setstate的回调中调用setstate

时间:2020-02-16 13:41:54

标签: javascript reactjs callback setstate

我可以在setstate的回调函数中使用setstate吗 '''this.setstate(update,function(){this.setstate} .bind)''' 上面给出的代码正确无误吗?

1 个答案:

答案 0 :(得分:0)

this.setState({
 someState: newValue,
}, callback);

以上代码在setState中使用回调函数。

所以您可以编写这样的代码。

this.setState({
 someState: newValue,
}, () => {
 // some code you want
});