Sar*_*mar 7 react-native react-native-android
我需要在应用程序背景时检查Internet连接
小智 8
import { NetInfo } from 'react-native';
NetInfo.isConnected.fetch().then(isConnected => {
if(isConnected)
{
console.log('Internet is connected');
}
})
Run Code Online (Sandbox Code Playgroud)
上面的代码足以检查是否存在活动的网络连接
小智 3
NetInfo API 用于检查互联网连接。
例如:NetInfo.isConnected.addEventListener('change', this._handleConnectionChange);
请参阅https://facebook.github.io/react-native/docs/netinfo.html了解更多详细信息。
| 归档时间: |
|
| 查看次数: |
14464 次 |
| 最近记录: |