当前位置: 代码迷 >> 综合 >> There was a problem sending log messages to your development environment
  详细解决方案

There was a problem sending log messages to your development environment

热度:33   发布时间:2023-11-24 23:10:24.0

          reactNative 使用过程中碰到这个错误。当然直接在stackOverflow 中直接有这个问题的答案

https://stackoverflow.com/questions/54510060/expo-react-native-there-was-a-problem-sending-log-messages

         也就是说不要直接 console.log(res),因为res 这个对象太大,不好直接输出。所以就单纯输出其中的一部分就行

         比如 res.data  

  相关解决方案