Cordova network isOnline returns true only on WiFi

前端 未结 1 1208
花落未央
花落未央 2021-01-01 05:45

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

相关标签:
1条回答
  • 2021-01-01 06:41

    This works fine for me:

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

    I hope this helps you!

    0 讨论(0)
提交回复
热议问题