chrome扩展程序里搜索Redux DevTools进行安装
新建store的时候,进行如下配置。
import { createStore, applyMiddleware ,compose} from 'redux';
import reducer from './reducer'
import thunk from 'redux-thunk'
const composeEnhancers = window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__ ? window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__({}) : compose;
const store=createStore(reducer,composeEnhancers(applyMiddleware(thunk)));
export default store;
文章介绍了在创建Reduxstore时如何集成ReduxDevTools扩展程序进行调试。通过引入`redux-thunk`中间件,并利用`window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__`来启用扩展,增强store的调试功能。
359

被折叠的 条评论
为什么被折叠?



