如何将动作放入管道?

时间:2019-11-15 04:58:12

标签: javascript redux-observable

我是Redux可观察的全新人。

我只想知道如何在map(pipe)中放置一个或多个动作?

const ExampleActionEpic: Epic<Action, any, T.State> = (
  action$, state$,
) => action$.pipe(
  ofType(ExampleAction),
  mergeMap(({ #ExampleAction's Properties# }) => {

    // const values

    return ajax.post(URL, body, {
        ...header,
        ...jsonContentHeader,
      }).pipe(
        map(({ response }) => response),
        map(({ A, B, C }) => {
          // Here I want to add Action with A, B, C value( like: DoAction(A, B, C); )
          return {
             A,
             B,
             C,
          };
        }),
        map({} ...),
        map(FinishAction),
        (res$) => concat(
          res$,
          action$.pipe(...)
        );
     );
  });
);


我试图将动作放入地图中,但无效。你能给我一些建议吗?

0 个答案:

没有答案