如何使用redux-persist从“ auth” reduce中排除“ accessToken”字段?我试图将“ auth” reducer列入黑名单,但它可以工作,但是我只需要一个字段
状态: https://monosnap.com/file/RhschoXwMAyL1cd3r67ywIA4lHM2bt
Persist config:
const persistConfig = {
key: 'root',
blacklist: ['auth'],
storage: AsyncStorage
};
const persistedReducer = persistReducer(persistConfig, reducers);
const store = createStore(persistedReducer, getMiddlewares);
export default store;
export const persistor = persistStore(store);
答案 0 :(得分:0)
转到您的化简器列表,然后返回化简器进行身份验证时,您需要返回该特定化简器的持久配置。
您当前正在将整个异径管(而不是仅仅一部分)列入黑名单。