我想获取设备的连接类型,但每次脚本都会返回null。
function verificaconexiunea(){
var conexiune = navigator.connection.type;
alert(conexiune);
var status={};
status["Connection.UNKNOWN"] = 'Conexiune necunoscuta';
status["Connection.ETHERNET"] = 'Conexiune Ethernet';
status["Connection.WIFI"] = 'Conexiune WiFi';
status["Connection.CELL_2G"] = 'Conexiune Internet 2G';
status["Connection.CELL_3G"] = 'Conexiune Internet 3G';
status["Connection.CELL_4G"] = 'Conexiune Internet 4G';
status["Connection.NONE"] = 'Fara conexiune internet!';
}
变量“conexiune”始终返回0。 有人能帮助我吗?
答案 0 :(得分:0)
什么版本的Cordova?您是否等待设备准备事件发生?