フラグを立てる前に、これには重複があることに注意してください。
Redux ストアに同時に統合redux-thunk
して置換を使用しようとしています。replaceReducer
基本的に、私はどこかに持っています:
const {createStore, applyMiddleware} = require('redux');
const thunk = require('redux-thunk');
createStore(function() {return {}}, applyMiddleware(thunk));
// also tried
// createStore(function() {return {}}, {}, applyMiddleware(thunk));
以降:
store.replaceReducer(someCombinedReducer);
現在、createStore()
ラインを介してエラーがトリガーされています(したがって、リデューサーの交換前)。
TypeError: middleware is not a function
バージョン:
- 還元: 4.0.1
- redux サンク: 2.3.0
編集:
applyMiddleware
スタック トレースは、この質問TypeError: middleware is not a function directly from the call I make. とまったく同じように関数を指しています。