function checkConnection() {
var networkState = navigator.network.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.NONE] = 'No network connection';
alert('Connection type: ' + states[networkState]);
}
这里我想显示警报,如果只有互联网连接不可用?我正在使用if statment if(statusValue == 'none'){ alert }
但这里没有在我的移动应用程序中工作。我在使用 Phonegap-1.3.0的.js
答案 0 :(得分:4)
只是做
networkState = navigator.network.connection.type;
if (networkState == Connection.NONE)
{
alert('No internet connection ');
};
答案 1 :(得分:1)
你也可以使用navigator.network.isReachable来ping谷歌这样的网站几乎100%的正常运行时间。这是不是所有的移动操作系统或某些特定版本的Android都没有?
答案 2 :(得分:1)
这可以帮到你:
// Wait for Cordova to load
document.addEventListener("deviceready", onDeviceReady, false);
// Cordova is ready
function onDeviceReady() {
document.addEventListener("offline", whenOffline, false);
return false;
}
function whenOffline() {
navigator.notification.alert(
'Sorry your internet connection is not working, please enable it !', // message
alertDismissed, // callback
'Settings', // title
'Done' // buttonName
);
return false;
}
答案 3 :(得分:1)
试试这个:
function checkConnection() {
network = navigator.network.connection.type;
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.NONE] = 'No network connection';
// alert('Connection type: ' + states[network]);
return states[network];
}
if (states[network] == 'No network connection')
{
alert('Connection type: ' + states[network]);
}
答案 4 :(得分:1)
尝试以下代码。
var networkState = navigator.network.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.NONE] = 'No network connection';
if ((states[networkState]) == states[Connection.NONE])
{
alert("Please check your internet connectivity and try again");
}