如何在 Promise.all 之后从 renderRedirect 函数返回值?这是我的派遣行动:
this.props.getChildrens(),
this.props.getTeachers(),
this.props.getTeachers()
渲染重定向功能:
renderRedirect = async () => {
Promise.all([
this.props.getChildrens(),
this.props.getTeachers(),
this.props.getTeachers()
]).then(() => {
return 'test';
});
};
在我的组件中,我的 console.logrenderRedirect函数是输出:
console.log(this.renderRedirect())
Promise {<resolved>: undefined}
qq_笑_17
人到中年有点甜
相关分类