65

我正在尝试使用 redux thunk 链接调度

function simple_action(){
  return {type: "SIMPLE_ACTION"}
}

export function async_action(){
  return function(dispatch, getState){
    return dispatch(simple_action).then(()=>{...});
  }
}

我如何让调度员返回商店的承诺?

进一步来说:

我可能只是不理解这里的某些内容,但在所有带有 的示例中redux-thunk,它们调用了一个单独的异步事件(如fetch),它显然返回一个Promise.

我特别要寻找的是当我向商店发送操作时:如何确保商店在上述函数中发生任何其他事情之前完全处理了该操作action_creator()

理想情况下,我希望商店返回某种承诺,但我不明白这是如何或在哪里发生的?

4

4 回答 4

47

这里有一个关于如何调度和链接异步操作的示例。https://github.com/gaearon/redux-thunk

thunk 中间件知道如何将 thunk 异步动作转换为动作,所以你只需要让你的 simple_action() 成为一个 thunk 并且 thunk 中间件会为你完成这项工作,如果中间件看到一个正常的动作,他会调度这个动作作为正常动作,但如果它是异步函数,它将把你的异步动作变成正常动作。

所以你的 simple_action 需要是一个 thunk (一个 thunk 是一个返回函数的函数。)例如:

function makeASandwichWithSecretSauce(forPerson) {
  return function (dispatch) {
    return fetchSecretSauce().then(
      sauce => dispatch(makeASandwich(forPerson, sauce)),
      error => dispatch(apologize('The Sandwich Shop', forPerson, error))
    );
  };
}

使用 makeASandwichWithSecretSauce 函数时,您可以使用调度函数

store.dispatch(
  makeASandwichWithSecretSauce('Me')
);

乃至

// It even takes care to return the thunk’s return value
// from the dispatch, so I can chain Promises as long as I return them.

store.dispatch(
  makeASandwichWithSecretSauce('My wife')
).then(() => {
  console.log('Done!');
});

这是一个完整的示例,说明如何编写动作创建者,从其他动作创建者分派动作和异步动作,并使用 Promises 构建控制流。

function makeSandwichesForEverybody() {
  return function (dispatch, getState) {
    if (!getState().sandwiches.isShopOpen) {
      // You don’t have to return Promises, but it’s a handy convention
      // so the caller can always call .then() on async dispatch result.
      return Promise.resolve();
    }

    //Do this action before starting the next one below 
    dispatch(simple_action());

    // We can dispatch both plain object actions and other thunks,
    // which lets us compose the asynchronous actions in a single flow.
    return dispatch(
      makeASandwichWithSecretSauce('My Grandma')
    ).then(() =>
      Promise.all([
        dispatch(makeASandwichWithSecretSauce('Me')),
        dispatch(makeASandwichWithSecretSauce('My wife'))
      ])
    ).then(() =>
      dispatch(makeASandwichWithSecretSauce('Our kids'))
    ).then(() =>
      dispatch(getState().myMoney > 42 ?
        withdrawMoney(42) :
        apologize('Me', 'The Sandwich Shop')
      )
    );
  };
}
//apologize and withdrawMoney are simple action like this for example
      return {
        type:  "END_SUCESS"
      }

//用法

store.dispatch(
  makeSandwichesForEverybody()
).then(() =>
    console.log("Done !");
);

要创建自己的 Promise,您可以使用 bluebird 之类的库。

//编辑:为了确保在函数 action_creator() 中发生任何其他事情之前商店已经完全处理了该动作,您可以在 action_creator() 之前调度这个 simple_action;// 我在代码中添加了这个注释//Do this action before starting the next one below

于 2016-01-28T23:01:22.263 回答
11

这是我最近一直在使用的模式:

export const someThenableThunk = someData => (dispatch, getState) => Promise.resolve().then(() => {
  const { someReducer } = getState();
  return dispatch({
    type: actionTypes.SOME_ACTION_TYPE,
    someData,
  });
});

当 you 时dispatch(someThenableThunk('hello-world')),它返回一个Promise对象,您可以将进一步的操作链接到该对象。

于 2018-07-21T09:40:07.217 回答
5

dispatch将返回它调用的任何动作/函数返回;因此,如果您想链接某些活动(根据您的示例),您的操作需要返回一个Promise.

正如@Aaleks 所提到的,如果您的操作是 athunk您可以创建一个返回 a 的场景Promise,那么您可以按照您提到的那样做。

顺便说一句,我认为命名你thunk action_creator有点误导,simple_action实际上是 Redux 用语中的 Action Creator - 已相应编辑:)

于 2016-11-24T18:15:54.497 回答
3

您需要做的是创建返回 Promise 的中继操作。调度函数返回您添加的作为参数的调用。例如,如果您希望 dispatch 返回 Promise,则必须将 Promise 作为参数添加到调用中。

function simple_action() {
  return { type: 'SIMPLE_ACTION' };
}

export function async_action(dispatch, getState) {
  return function () {
    return Promise.resolve(dispatch(simple_action()));
  }
}

const boundAction = async_action(dispatch, getState);
boundAction().then(() => {});
于 2021-02-21T19:06:58.180 回答