gpt4 book ai didi

redux - 在 redux-observable 中,我如何控制 reducer 还是 epics 首先对 Action 使用react?

转载 作者:行者123 更新时间:2023-12-04 03:05:28 24 4
gpt4 key购买 nike

例如对于某些 Action ,我希望 reducer 在史诗之前处理它。反之亦然。有办法做到这一点吗?

最佳答案

据我所知,您无法修改它 - reducer 将始终先运行。 relevant chunk of redux-observable是:

  return action => {
const result = next(action);
input$.next(action);
return result;
};

中间件总是首先将操作传递给管道中的下一个中间件,从而使其到达 reducer 。只有在回归之后,它才会将 Action 融入史诗。 Redux-Saga 做完全相同的事情。

关于redux - 在 redux-observable 中,我如何控制 reducer 还是 epics 首先对 Action 使用react?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45001331/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com