Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有以下中间件。 这个中间件的作用类似于 redux-thunk 中间件,但是将 dispatcher 和 state getter 传递给了 action creator 函数,而且我还传递了下一个可以调用的中间件。在这种情况下,我可以像这样导出所有中间件
所以在我的动作创建器中,我没有调度动作,而是将它传递给下一个中间件。
我只是想知道为什么我应该使用 redux-thunk 而不是这个简单的 customThunk 中间件?