Redux 错误:应用程序状态或操作有效负载太大 - 问题是什么?

问题描述 投票:0回答:1

VM75:3075 Application state or actions payloads are too large making Redux DevTools serialization slow and consuming a lot of memory. See https://git.io/fpcP5 on how to configure it.

我在使用 Redux Toolkit RTK 查询和实体适配器时遇到上述错误。

我从查询中获取数据并使用 setAll 来标准化数据。我还从 websocket 获取数据并使用新数据更新标准化数据。我之前是Json解析的。

我想找出问题所在。动作有效负载是否太大?项目列表不是那么大,所以可能不是。

如有任何帮助,我们将不胜感激。

redux websocket redux-toolkit rtk-query createentityadapter
1个回答
0
投票

尝试自定义您商店中的中间件。

const store = configureStore({
  reducer: {
    // ...
  }
  // ...
  middleware: (getDefaultMiddleware) => getDefaultMiddleware({
    immutableCheck: false,
    serializableCheck: false,
  })
})
© www.soinside.com 2019 - 2024. All rights reserved.