返回介绍

如何在 Redux 中重置状态?

发布于 2024-09-16 12:15:20 字数 994 浏览 0 评论 0 收藏 0

你需要在你的应用程序中编写一个 root reducer ,它将处理动作委托给 combineReducers() 生成的 reducer。

例如,让我们在 USER_LOGOUT 动作之后让 rootReducer() 返回初始状态。我们知道,无论 Action 怎么样,当使用 undefined 作为第一个参数调用它们时,reducers 应该返回初始状态。

const appReducer = combineReducers({
  /* your app's top-level reducers */
})

const rootReducer = (state, action) => {
  if (action.type === 'USER_LOGOUT') {
    state = undefined
  }

  return appReducer(state, action)
}

如果使用 redux-persist ,您可能还需要清理存储空间。 redux-persist 在 storage 引擎中保存您的状态副本。首先,您需要导入适当的 storage 引擎,然后在将其设置为 undefined 之前解析状态并清理每个存储状态键。

const appReducer = combineReducers({
  /* your app's top-level reducers */
})

const rootReducer = (state, action) => {
  if (action.type === 'USER_LOGOUT') {
    Object.keys(state).forEach(key => {
      storage.removeItem(`persist:${key}`)
    })

    state = undefined
  }

  return appReducer(state, action)
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文