如何重置Redux存储的状态?

如何重置Redux存储的状态?,第1张

如何重置Redux存储的状态

一种方法是在应用程序中编写根减少器。

减速器通常会将处理 *** 作委托给由生成的减速器

combineReducers()
。但是,无论何时收到
USER_LOGOUT
动作,它都会再次返回初始状态。

例如,如果您的根减速器如下所示:

const rootReducer = combineReducers({  })

您可以将其重命名为

appReducer
并为其编写新的
rootReducer
委托:

const appReducer = combineReducers({  })const rootReducer = (state, action) => {  return appReducer(state, action)}

现在,我们只需要教新手

rootReducer
USER_LOGOUT
*** 作后返回初始状态即可。众所周知,
undefined
无论采取什么行动,都应该在以第一个自变量调用reduce时返回初始状态。让我们利用这一事实在将累加
state
传递给时有条件地去除累加
appReducer

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

现在,每当

USER_LOGOUT
开火,所有的异径管将被重新初始化。如果愿意,他们还可以返回与最初不同的东西,因为他们也可以检查
action.type

重申一下,完整的新代码如下所示:

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

请注意,我这里不是在改变状态,我只是在将局部变量的引用

state
传递给另一个函数之前[重新分配了它的引用。更改状态对象将违反Redux原则。

如果您使用redux-persist,则可能还需要清理存储。Redux-persist会将状态副本保存在存储引擎中,状态副本将在刷新时从那里加载。

首先,您需要导入适当的存储引擎,然后在将其设置为

undefined
并解析每个存储状态键之前先解析状态。

const rootReducer = (state, action) => {    if (action.type === SIGNOUT_REQUEST) {        // for all keys defined in your persistConfig(s)        storage.removeItem('persist:root')        // storage.removeItem('persist:otherKey')        state = undefined;    }    return appReducer(state, action);};


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5440029.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-11
下一篇 2022-12-11

发表评论

登录后才能评论

评论列表(0条)

保存