我有以下中间件 .
enter image description here
这个中间件就像redux-thunk中间件,但是将调度程序和状态getter传递给action creator函数,但是我也传递了可以调用的下一个中间件 . 在这种情况下,我可以导出我的所有中间件
enter image description here

所以在我的动作创建者中,我只是将它传递给下一个中间件,而不是分派动作 .
enter image description here

我只是想知道为什么我应该使用redux-thunk而不是这个简单的customThunk中间件?