离线和在线事件不获得在cordova 3.5.0中调用 [英] Offline and online events not getting Called in cordova 3.5.0

查看:110
本文介绍了离线和在线事件不获得在cordova 3.5.0中调用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我使用cordova 3.5.0来开发我的phonegap应用程序。在我想要检查互联网连接之前Web服务调用。所以我添加网络状态插件通过使用命令 cordova插件添加org.apache.cordova.network信息。插件成功安装在我的应用程序中。

I am using cordova 3.5.0 to develop my phonegap application . In that i want to check internet connectivity before web service calls . So i added network status plugin by using the command cordova plugin add org.apache.cordova.network-information . Plugin installed successfully in my application .

添加插件之后,我添加了2个EventListener,一个用于在线,另一个用于离线。

After Adding the plugins i added 2 EventListener's one for online and another for offline.

var app = {
    // Application Constructor
    initialize: function() {
        console.log('App initializing...');
        this.bindEvents();
    },
    // Bind Event Listeners
    //
    // Bind any events that are required on startup. Common events are:
    // 'load', 'deviceready', 'offline', and 'online'.
    bindEvents: function() {
        //This is to allow testing in desktop browser where there is no device ready event
        if (navigator.userAgent.match(/(iPhone|iPod|iPad|Android|BlackBerry)/)) {
            document.addEventListener('deviceready', this.onDeviceReady, false);
    document.addEventListener("offline", onOffline, false);
    document.addEventListener("online", onOnline, false);

        } else {
            this.onDeviceReady();
        }

    },
    // deviceready Event Handler
    //
    // The scope of 'this' is the event. In order to call the 'receivedEvent'
    // function, we must explicity call 'app.receivedEvent(...);'
    onDeviceReady: function() {
        StatusBar.overlaysWebView(false);
        app.receivedEvent('deviceready');
    },
 onOnline:function(){
     console.log("Online");
    }.
   onOffline: function(){
     console.log("Offline");
    },
    // Update DOM on a Received Event
    receivedEvent: function(id) {
        require(['router'], function(Router){
            Router.getInstance();
            console.log('Backbone callback...');
        });
    }
    };

所以我使用另一种方法检查在线状态,如Phonegap文档中所述

So i used another method to check online status as mentioned in Phonegap documentation

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]);
}

它总是返回连接到互联网的模式,例如WiFi连接 。虽然我改变了我断开了我的互联网连接。

which is always returning the mode am connected to internet for e.g "WiFi connection" . Though i changed my disconnected my internet connection .

帮我解决这个问题。

推荐答案

我有同样的问题:在线/离线事件没有触发,有时当它离线, ...

I had the same problem: the online/offline event was not firing, and sometimes when it went offline, the app crashed...

解决方案:
- 相应的权限标签必须在标签之后立即出现,在AndroidManifest.xml文件中...它可能显得很可笑

THE SOLUTION: - The appropriate permission tag must bem IMMEDIATELY after the tag , in the AndroidManifest.xml file... it may appear ridiculous, but otherwise the event was not firing.

最后,您的文件将如下所示:

In the end, your file will look like:

<manifest android:hardwareAccelerated="true" android:versionCode="10000" android:versionName="1.0.0" android:windowSoftInputMode="adjustPan" package="br.com.burkard.app" xmlns:android="http://schemas.android.com/apk/res/android">
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
    <supports-screens android:anyDensity="true" android:largeScreens="true" android:normalScreens="true" android:resizeable="true" android:smallScreens="true" android:xlargeScreens="true" />

这篇关于离线和在线事件不获得在cordova 3.5.0中调用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆