this.props.showMessage({
handleOk: async ()=>{
await this.props.initAction(),
await this.props.select(index)
}
});
select=(index)=>{
const {selectAction} = this.props;
selectAction(index);
}
代码中initAction()是个异步action,里面有请求后台的ajax,使用了saga里的gererator,selectAction是同步的,现在想让initAction执行完之后,再执行selectAction,
请问应该如何处理?现在是先执行selectAction然后再执行initAction
登录后可查看更多问答,登录/注册