摘要
记录 React 学习中的小细节
setState
setState 有一定的时间延迟,如果需要保证 setState 之后执行某些动作,可以采用以下方法
this.setState({
visible: true,
animationType: 'in'
}, () => {
// todo something
});
记录 React 学习中的小细节
setState 有一定的时间延迟,如果需要保证 setState 之后执行某些动作,可以采用以下方法
this.setState({
visible: true,
animationType: 'in'
}, () => {
// todo something
});