我的Reactotron有一个小问题,可能是由redux-persist引起的
该应用已连接,唯一的问题是,所有显示的值都可能来自redux-persist
这是我的reactotronConfig文件:
import Reactotron from 'reactotron-react-native';
import AsyncStorage from '@react-native-community/async-storage';
import {reactotronRedux} from 'reactotron-redux';
const reactotron = Reactotron.setAsyncStorageHandler(AsyncStorage)
.configure({name: 'GameFare App'})
.useReactNative()
//.use(reactotronRedux) // add all built-in react native plugins
.connect();
export default reactotron;
这是我的持久配置:
const persistConfig = {
key: 'root',
storage: AsyncStorage,
blacklist: ['conversations', 'events'],
// stateReconciler: autoMergeLevel2 // see "Merge Process" section for details.
};
我只需要Reactotron来了解我要显示的商店位于键为persist:root的值中
有人知道怎么做吗?
预先感谢