Cordova network isOnline returns true only on WiFi

我们两清 提交于 2019-11-29 15:31:56

问题


The following logs out only when I have WiFi on. On 4g or any mobile internet type it doesn't. Doesn't seem so reliable. Any ideas for a better detection of online/offline state?

$rootScope.$on( '$cordovaNetwork:online', function ( event, networkState ) {
    console.log( "Phone is online" );
} );

回答1:


This works fine for me:

function isOnline(){
     return !(Connection.NONE==navigator.connection.type);
}

I hope this helps you!



来源:https://stackoverflow.com/questions/33878872/cordova-network-isonline-returns-true-only-on-wifi

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!