移动端获取手机网络信息

安装 插件 cordova plugin add cordova-plugin-network-information
支持平台(Supported Platforms)

  • Android
  • Browser
  • iOS
  • Windows

注意事项 - - navigator.connection.type is set to Connection.CELL for all cellular data.

js 插件使用android

function checkConnection() {
var networkState = navigator.connection.type;

var states = {};
states[Connection.UNKNOWN]  = 'Unknown connection';
states[Connection.ETHERNET] = 'Ethernet connection';
states[Connection.WIFI]     = 'WiFi connection';
states[Connection.CELL_2G]  = 'Cell 2G connection';
states[Connection.CELL_3G]  = 'Cell 3G connection';
states[Connection.CELL_4G]  = 'Cell 4G connection';
states[Connection.CELL]     = 'Cell generic connection';
states[Connection.NONE]     = 'No network connection';

alert('Connection type: ' + states[networkState]);

}

checkConnection();

你可能感兴趣的:(移动开发,android,ios)