setTimeOut
函数将函数添加到队列中。有什么功能或方法可以使代码休眠或延迟reactjs。
例如:
console.log('a');
// delay/wait 2secs
console.log('b');
上面的代码应打印a
,然后添加2秒的延迟,然后打印b
。
PS:setTimeOut
在我的情况下不起作用。我正在寻找其他解决方案。
PPS:这是我的问题的链接: setState is updating immediately even after using setTimeOut