最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - How to use whitelist in redux-persist v5? - Stack Overflow

programmeradmin1浏览0评论

I try to use whitelist in redux-persist v5.

I followed this answer on Stack Overflow, like below

persistStore(store, { whitelist: ['messages'] });

However, I got the error

invalid option passed to persistStore: "whitelist". You may be incorrectly passing persistConfig into persistStore, whereas it should be passed into persistReducer.

Then I tried something like below after reading the redux-persist readme file

const transform = createTransform(null, null, {
  whitelist: [
    'messages'
  ]
});

const config = {
  key: 'state',
  storage: localForage,
  transforms: [transform]
};

const reducer = persistReducer(config, rootReducer);

But it does not work. It still saves everything through localForage.

So what is the correct way to use whitelist in redux-persist v5?

I try to use whitelist in redux-persist v5.

I followed this answer on Stack Overflow, like below

persistStore(store, { whitelist: ['messages'] });

However, I got the error

invalid option passed to persistStore: "whitelist". You may be incorrectly passing persistConfig into persistStore, whereas it should be passed into persistReducer.

Then I tried something like below after reading the redux-persist readme file

const transform = createTransform(null, null, {
  whitelist: [
    'messages'
  ]
});

const config = {
  key: 'state',
  storage: localForage,
  transforms: [transform]
};

const reducer = persistReducer(config, rootReducer);

But it does not work. It still saves everything through localForage.

So what is the correct way to use whitelist in redux-persist v5?

Share Improve this question edited Oct 28, 2017 at 8:29 Hongbo Miao asked Oct 28, 2017 at 8:18 Hongbo MiaoHongbo Miao 50.1k67 gold badges200 silver badges328 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 7

If you're using redux-persist v5, you should pass the PersistConfig, as the 1st parameter of persistCombineReducers:

const config = {
  key: 'root',
  whitelist: ['messages']
}

const reducer = persistCombineReducers(config, reducers)

Note: they've made several changes in v5, read the docs carefully to create the enhanced store, and optionally using the PersistGate.

发布评论

评论列表(0)

  1. 暂无评论