如何使用redux-persistent来持久化React本机redux-state



我一直在尝试使用redux perist将我的redux状态保存到AsyncStorage。尽管我不断得到一个错误:

_this.store.getState is not a function

我不知道为什么会发生这种事?

这是我的设置:

configStore.js:

import {AsyncStorage,} from 'react-native';
import { createStore, applyMiddleware, compose, combineReducers, } from 'redux';
import reduxThunkMiddleware from 'redux-thunk';
import Reactotron from 'reactotron';
import * as reducers from './modules';
import devTools from 'remote-redux-devtools';
import {persistStore, autoRehydrate} from 'redux-persist'

Reactotron.connect({
  enabled: __DEV__,
});
const enhancer = compose(
  autoRehydrate(),
  applyMiddleware(
    reduxThunkMiddleware,
    Reactotron.reduxMiddleware,
  ),
  devTools()
);
export default function configureStore(initialState) {
  const store = createStore(
    combineReducers({
      ...reducers,
    }),
    initialState,
    enhancer,
  );
  Reactotron.addReduxStore(store, {storage: AsyncStorage});
  return store;
}

App.js:

这是我将store连接到<provider>:的位置

import React from 'react';
import {AsyncStorage} from 'react-native';
import { Provider, connect } from 'react-redux';
import { Router } from 'react-native-router-flux';
import routes from '@routes/app';
import createStore from './redux/create'; // Returns store object from the above configureStore.js!
import {persistStore} from 'redux-persist'
const RouterWithRedux = connect()(Router);
const store = persistStore(createStore(), {storage: AsyncStorage}); // Not working??
const Kernel = () => (
  <Provider store={store}>
    <RouterWithRedux scenes={routes} />
  </Provider>
);
export default Kernel;
const RouterWithRedux = connect()(Router);
const store = createStore();
const persistor = persistStore(store, {storage: AsyncStorage}); // Not working??
const Kernel = () => (
  <Provider store={store} persistor={persistor}>
    <RouterWithRedux scenes={routes} />
  </Provider>
);

问题是我必须通过一个持久性字段和存储字段。

在persistor字段中添加后,我的存储被持久化到AsyncStorage 中

编辑:

这在当时起到了作用-我突然想到这不是问题的正确解决方案。但我仍然得到回应,认为它仍然有效,如果有人能为其他人提供另一个答案,那就太好了。

相关内容

最新更新