【发布时间】:2018-02-10 07:09:43
【问题描述】:
我在我的 React Native 应用程序中使用 redux-persist。
我要做的是在从应用程序注销时清理 redux 商店。
persistStore(
store,
{
whitelist: compact([
'appInfo'
]),
storage: AsyncStorage
},
);
我知道 redux 只保留白名单中的状态。
因此,我想在退出应用程序时调用此函数以清除 redux 商店中以前的用户详细信息。
有人知道怎么做吗?
非常感谢,
【问题讨论】:
标签: react-native redux react-redux redux-thunk redux-saga