我必须在互联网/连接可用性上调用两个基于的功能。
如果有互联网连接存在,则调用插入功能,否则调用更新。
我试过这样:
var online = window.navigator.onLine;
if (online==ture) {
alert('connection down.');
}else
{
alert('Please check your internet connection and try again');
}
此代码仅适用于浏览器,但不适用于设备。在这两种情况下都会显示alert('connection down');
,即互联网是否存在。
请参阅此代码,因为我是Phonegap的新手。
答案 0 :(得分:0)
使用此插件来满足您的需求 (https://github.com/apache/cordova-plugin-network-information)。安装后,请尝试使用此代码检查互联网连接。
document.addEventListener("deviceready",checkInternet,false);
function checkInternet(){
if(navigator.connection.type=="none"){
//no internet connection
alert("No connection");
}else{
alert("Connection ok");
}
}
答案 1 :(得分:0)
它是HTML5 API的一部分。检查window.navigator.onLine的值 - 如果用户处于脱机状态,则为false。 当浏览器联机和离线时,指标会更新。
<head>
<title>Online status</title>
<script>
function updateIndicator()
{
document.getElementById('indicator').textContent = navigator.onLine ? 'online' : 'offline';
}
</script>
</head>
<body onload="updateIndicator()" ononline="updateIndicator()" onoffline="updateIndicator()">
<p>The network is: <span id="indicator">(state unknown)</span>
</body>
答案 2 :(得分:0)
您正在使用的API将不在移动设备上运行。您需要改为使用Network API。
你需要这样做:
通过CL
使用以下命令添加网络插件 cordova plugin add org.apache.cordova.network-information
现在获取网络状态为
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();