一种方法是在应用程序中编写根减少器。
根减速器通常会将处理 *** 作委托给由生成的减速器
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);};
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)