我是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(...)
);
);
});
);
我试图将动作放入地图中,但无效。你能给我一些建议吗?