我一直在写一些自定义中间件。我只想看到我的商店(作为不同状态的连锁店)。每个减速器都有自己的状态,结合起来应该给我我的商店。
import {createStore, applyMiddleware, compose} from 'redux';
import rootReducer from '../reducers';
import thunk from 'redux-thunk';
import {createLogger} from 'redux-logger';
import PouchDB from 'pouchdb';
const logger = createLogger({collapsed: true});
const customMiddleware = store => next => action => {
console.log(store.getState());
next(action);
}
export default function configureStore(initialState) {
return createStore(rootReducer, applyMiddleware(customMiddleware));
}
添加 isImmutable 后,我尝试了这个:
const customMiddleware = store => next => action => {
const state = store.getState();
const storeTest = store.getState().toJS();
console.log(storeTest);
console.log(isImmutable(state) ? state.toJS() : state);
next(action);
}
storeTest 给出了想要的结果,但其他日志没有。 知道如何解决这个问题吗?