ReactJS多箭头功能

时间:2018-06-11 13:18:25

标签: reactjs

.then((myJson) => this.setState({example: myJson},() => this.toggleModal()));

我从我的API中获取数据然后我将我的Modal显示为显示一些数据,但我需要在模式显示之前执行this.example()函数,我试图制作;

.then((myJson) => this.setState({example: myJson},() => this.example() ,() => this.toggleModal()));

但是这样toogleModal()没有执行! 我该如何解决这个问题?

1 个答案:

答案 0 :(得分:0)

就像@Developer说的那样,试试吧:

.then((myJson) => this.setState({example: myJson},() => {
      this.example();
      this.toggleModal();
 }));