我想将 reactotron 添加到我的 react-redux 应用程序中 - 我正在使用 rematch redux 插件。Redux 工作正常,我也可以连接到 reactotron 桌面应用程序,但我无法订阅任何状态。当我想订阅它时,什么也没有发生。
只有副标题:'没有订阅。你可以通过按 ctrl + n 订阅你的 redux 存储中的状态。
在 reactotron 应用程序的时间线上,我可以看到我与这些细节的联系:
environment undefined
reactotronLibraryName reactotron-react-js
reactotronLibraryVersion 2.1.1
platform browser
platformVersion Linux x86_64
userAgent Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:68.0) Gecko/20100101 Firefox/68.0
screenWidth 1920
screenHeight 1080
screenScale 1
windowWidth 1853
windowHeight 951
name FoodGlobal
clientId 6f463c04-0d7a-8786-112b-53a630036930
reactotronCoreClientVersion 2.8.2
address ::ffff:192.168.0.59
这是我的反应器配置:
import Reactotron from 'reactotron-react-js';
import {reactotronRedux} from 'reactotron-redux';
const reactotron = Reactotron.configure({
name: 'FoodGlobal',
host: '127.0.0.1'
})
.use(reactotronRedux());
reactotron.connect();
export default reactotron;
这里是 redux 存储配置:
import thunk from "redux-thunk";
import selectPlugin from "@rematch/select";
import { init } from "@rematch/core";
import * as models from "./models";
import reactotron from './reactotron';
export const store = init({
models,
redux: {
createStore: reactotron.createStore,
middlewares: [thunk]
},
plugins: [selectPlugin()]
});
export const { dispatch } = store;
export default store;
谢谢你的帮助。