我使用Reactotron版本1在我的react本机应用程序中记录我的网络响应,一切正常,最近我将Reactotron版本更改为2.1.2版,此后,我开始在reactotron应用程序的响应选项卡中被跳过。

我没有在代码中的Reactotron设置中进行任何更改

 if(__DEV__)
     Reactotron
      .configure() // controls connection & communication settings
      .useReactNative()// add all built-in react native plugins
      .use(networking())
      .use(reactotronRedux())
      .connect(); // let's connect!


需要帮助找出原因吗?

reactjs - Reactotron给出“跳过”以响应网络调用-LMLPHP

最佳答案

这是一个已知问题,已在主机Reactotron Pull Request #837上解决。不幸的是,他们尚未发布新的npm软件包,并且看起来他们正在关注主要的下一个版本,因此您可以手动修补npm软件包或等待新版本。

关于reactjs - Reactotron给出“跳过”以响应网络调用,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/52493096/

10-10 21:58