几乎所有的问题都与 redux 中间件有关,但没有一个指向与 redux-toolkit 相关的问题。正如本文档所建议的那样,我创建了一个商店,如下所示
import {configureStore} from '@reduxjs/toolkit';
import authReducer from '../features/auth/authSlice';
import cookieReducer from '../features/cookie/cookieSlice';
const store = configureStore({
reducer: {
auth: authReducer,
cookie: cookieReducer,
},
devTools: true, // This should automatically enable Redux DevTools
});
export default store;
// Infer the `RootState` and `AppDispatch` types from the store itself
export type RootState = ReturnType<typeof store.getState>;
export type AppDispatch = typeof store.dispatch;
然后我在调试模式下运行应用程序,并在“Redux”开发工具扩展选项卡中看到了这个!
我假设 redux 工具包会按照文档所述对 Redux Dev Tools 进行自动配置。我是否错过了代码或 Redux Dev Tools 配置中的任何其他配置?
非常感谢您的帮助。