あなたはミドルウェア、
import { createStore, applyMiddleware } from 'redux';
import reduxCatch from 'redux-catch';
import reducer from './reducer';
function errorHandler(error, getState, lastAction, dispatch) {
console.error(error);
console.debug('current state', getState());
console.debug('last action was', lastAction);
// optionally dispatch an action due to the error using the dispatch parameter
}
const store = createStore(reducer, applyMiddleware(
reduxCatch(errorHandler)
));
を使用している場合Redux-catchに関する詳細なドキュメントを参照してください。また
、これらの質問を確認してください。
redux-promise with Axios, and how do deal with errors?
Best practice to handle errors in Redux and React