我正在尝试检查用户是否已连接到互联网.我正在使用这样的NetInfo(来自文档): componentDidMount() { NetInfo.isConnected.addEventListener('change', this.handleConnectionChange); NetInfo.isConnected.fetch().done( (is
componentDidMount() { NetInfo.isConnected.addEventListener('change', this.handleConnectionChange); NetInfo.isConnected.fetch().done( (isConnected) => { this.setState({ status: isConnected }); } ); } componentWillUnmount() { NetInfo.isConnected.removeEventListener('change', this.handleConnectionChange); } handleConnectionChange = (isConnected) => { this.setState({ status: isConnected }); console.log(`is connected: ${this.state.status}`); }
奇怪的是,第一次加载屏幕我正在做这个工作正常.但是当我开始打开我的wifi时,结果会有所不同:有时它会检测到有时没有的变化.有人有同样的问题吗?
根据我的经验,当使用React Native NetInfo类重新连接互联网连接时,iOS模拟器不会“注意到”.这很烦人.但是,对我来说,它可以在真实设备上运行.