1.  添加插件 : cordova plugin add cordova-plugin-network-information

2. 调用方法:

document.addEventListener('deviceready',function(){
    //获取网络的信息;
     var type = navigator.connection.type;
   if (type === 'wifi') {
     $CommonFactory.showConfirm(function(){UpdateForAndroid();},"版本升级","发现新版本","升级","取消");  
     }else{
     $CommonFactory.showConfirm(function(){UpdateForAndroid();},"建议您在WIFI条件下进行升级,是否确认升级?","发现新版本","升级","取消");
   }
},false);

 

相关文章:

  • 2021-12-26
  • 2021-10-29
  • 2021-05-24
  • 2021-11-22
  • 2022-02-22
  • 2021-09-21
  • 2021-09-22
  • 2022-01-06
猜你喜欢
  • 2021-12-29
  • 2021-05-16
  • 2021-08-30
  • 2022-01-15
  • 2021-06-17
相关资源
相似解决方案