我的行动:
const someAction = () => {
return {
[RSAA]: {
types: [
SOME_REQUEST,
SOME_SUCCESS,
SOME_FAILURE,
],
endpoint: ...,
method: 'POST',
}
};
};
我用以下方式调用它:
this.props.someAction();
一切正常,我能够处理减速器中的数据。 问题是,我可以在调用函数时以某种方式获取函数的结果吗?
我的意思是这样的:
this.props.someAction().then( //success ).catch( //error );