我想调试Expo中的网络请求。 我正在使用Reactotron:它可以在ios模拟器上运行,但在物理设备上却什么也没有: 我在Android和隧道EXPO连接上使用EXPO。
这是我的App.js
中的配置:
import Reactotron from 'reactotron-react-native'
Reactotron
.setAsyncStorageHandler(AsyncStorage) // AsyncStorage would either come from `react-native` or `@react-native-community/async-storage` depending on where you get it from
.configure() // controls connection & communication settings
.useReactNative() // add all built-in react native plugins
.connect() // let's connect!
export default function App(props) {
const [isLoadingComplete, setLoadingComplete] = useState(false);
useEffect(() => {
Reactotron.connect()
});
...
我需要更改什么才能在物理设备上调试请求?