简体   繁体   English

Ionic:使用Cordova检查Internet连接

[英]Ionic: Check Internet Connection using Cordova

I am working on Ionic Framework, and facing issues using the Apache Cordova Network API to detect internet connection in Android App. 我正在研究Ionic Framework,并面临使用Apache Cordova Network API检测Android App中的互联网连接的问题。 I have referred this tutorial and also created a demo project, which works fine. 我已经参考了这个教程并创建了一个演示项目,它工作正常。

I have followed the below steps. 我按照以下步骤操作。 [from the tutorial] [来自教程]

  1. ionic start testApp sidemenu

  2. ionic platform add android

  3. Open testApp/www/js/app.js 打开testApp/www/js/app.js

  4. Copy paste this code 复制粘贴此代码

     if(window.Connection) { if(navigator.connection.type == Connection.NONE) { alert('There is no internet connection available'); }else{ alert(navigator.connection.type); } }else{ alert('Cannot find Window.Connection'); } 
  5. Install Cordova Plugin cordova plugin add org.apache.cordova.network-information 安装Cordova插件cordova plugin add org.apache.cordova.network-information

  6. Build ionic build android 构建ionic build android

  7. Run ionic run android 运行ionic run android

This works fine 这很好用

Issue 问题

  1. Copy Paste www from mainproject to testApp and do steps 6 and 7 mainproject粘贴www复制到testApp并执行步骤6和7

I get a alert Cannot find Window.Connection 我收到警报Cannot find Window.Connection

After copy pasting the app.js looks like this 复制粘贴app.js看起来是这样的

.run(function($ionicPlatform) {
  $ionicPlatform.ready(function() {
    // Hide the accessory bar by default (remove this to show the accessory bar above the keyboard
    // for form inputs)
    if(window.cordova && window.cordova.plugins.Keyboard) {
      cordova.plugins.Keyboard.hideKeyboardAccessoryBar(true);
    }
    if(window.StatusBar) {
      // org.apache.cordova.statusbar required
      StatusBar.styleDefault();
    }
    // check internet connection
    //alert(window.Connection);
    alert('Hi')
    try {
       alert('Naviagtor says'+navigator.connection.type);
     }
    catch(err) {
       alert( 'Error '+ err.message) 
       //here i get 'Error cannot read property type of undefined'
     }

if(window.Connection) {
    if(navigator.connection.type == Connection.NONE) {
        alert('There is no internet connection available');
    }else{
        alert(navigator.connection.type);
    }
}else{
    alert('Cannot find Window.Connection');
}

  });
})

The moment I copy paste my app.js and controllers.js to the testApp/www/js directory the whole thing blows up. 在我将app.jscontrollers.js粘贴到testApp/www/js目录的那一刻,整个事情就爆发了。

Any help in debugging is highly appreciated. 任何有关调试的帮助都非常感谢。

Thanks, 谢谢,

Note 注意

I do have cordova.js in index.html . 我在index.htmlcordova.js

I have re installed platforms and plugins after copy paste as well. 我也在复制粘贴后重新安装了platformsplugins

I solved a similar issue by using ngcordova . 我使用ngcordova解决了类似的问题。 It gives you an angular wrapper around the plugin that implements promises. 它为你提供了一个实现promises的插件的角度包装器。

Often Cordova plugins aren't ready when you try to call them, using the promise interface you can avoid getting undefined errors. 当您尝试调用它们时,Cordova插件通常没有准备好,使用promise接口可以避免出现未定义的错误。

I stole the example from the ngcordova page on the network plugin here . 我偷了ngcordova页面的网络插件的例子在这里

module.controller('MyCtrl', function($scope, $rootScope, $cordovaNetwork) {

 document.addEventListener("deviceready", function () {

    var type = $cordovaNetwork.getNetwork()

    var isOnline = $cordovaNetwork.isOnline()

    var isOffline = $cordovaNetwork.isOffline()


    // listen for Online event
    $rootScope.$on('networkOffline', function(event, networkState){
      var onlineState = networkState;
    })

    // listen for Offline event
    $rootScope.$on('networkOffline', function(event, networkState){
      var offlineState = networkState;
    })

  }, false);
});

For anyone new visiting and having problems with getting Armed10's answer working, you may want to check the post I wrote which goes literally step by step telling you where and why you should put some piece of code (may be useful if you're just starting with Ionic): http://www.nikola-breznjak.com/blog/codeproject/check-network-information-change-with-ionic-famework/ . 对于任何新访问并且让Armed10的答案有效的问题,你可能想查看我写的帖子,逐步告诉你应该放置一些代码的位置和原因(如果你刚开始的话可能会有用)与Ionic): http//www.nikola-breznjak.com/blog/codeproject/check-network-information-change-with-ionic-famework/

Also, I made the example code available freely on Github: https://github.com/Hitman666/IonicNetworkInfo . 另外,我在Github上免费提供了示例代码: https//github.com/Hitman666/IonicNetworkInfo

edit: As per StackOverflow's rules, I'm adding the post content here as well: 编辑:根据StackOverflow的规则,我也在这里添加帖子内容:

Step by step on how to make this yourself 一步一步如何自己做这件事

Start a new Ionic project by doing: 通过执行以下操作启动新的Ionic项目:

ionic start IonicNetworkInfo blank

Then, change the directory to the newly created IonicNetworkInfo: 然后,将目录更改为新创建的IonicNetworkInfo:

cd IonicNetworkInfo

Install ngCordova with Bower: 使用Bower安装ngCordova:

bower install ngCordova

If by some chance you don't have bower installed, you can install it with npm: 如果您有可能没有安装bower,可以使用npm安装它:

npm install bower -g

Open up the www/index.html file in your favorite editor, and add the reference to ngCordova (just above the cordova.js script): 在您喜欢的编辑器中打开www / index.html文件,并添加对ngCordova的引用(就在cordova.js脚本上方):

<!-- This is what you should add, the cordova below you'll already have -->
<script src="lib/ngCordova/dist/ng-cordova.min.js"></script>

<!-- cordova script (this will be a 404 during development) -->
<script src="cordova.js"></script>

Install the ngCordova network plugin by executing the following command in your Terminal/Command prompt (you should do this from the root directory of your app; so, in our case the IonicNetworkInfo directory): 通过在终端/命令提示符中执行以下命令来安装ngCordova网络插件(您应该从应用程序的根目录执行此操作;因此,在我们的示例中为IonicNetworkInfo目录):

cordova plugin add org.apache.cordova.network-information

To check if you have successfully installed the plugin, you can run the following command (from the root directory – I won't be repeating this anymore; when I say you should run some command from the Terminal/Command prompt that, in this case, means from the root directory of the application): 要检查是否已成功安装插件,可以运行以下命令(从根目录 - 我将不再重复此操作;当我说你应该从终端/命令提示符运行一些命令时,在这种情况下,表示从应用程序的根目录):

cordova plugin list

You should see the following output: 您应该看到以下输出:

> cordova plugin list                                                                                                                           
com.ionic.keyboard 1.0.4 "Keyboard"
org.apache.cordova.network-information 0.2.15 "Network Information"

Open up the www/js/app.js file and add ngCordova to the dependencies list, so that basically the first line looks like this: 打开www / js / app.js文件并将ngCordova添加到依赖项列表中,这样第一行基本上如下所示:

angular.module('starter', ['ionic', 'ngCordova'])

Create a new controller in the www/js/app.js file called MyCtrl, with the following content: 在名为MyCtrl的www / js / app.js文件中创建一个新控制器,其中包含以下内容:

.controller('MyCtrl', function($scope, $cordovaNetwork, $rootScope) {
    document.addEventListener("deviceready", function () {

        $scope.network = $cordovaNetwork.getNetwork();
        $scope.isOnline = $cordovaNetwork.isOnline();
        $scope.$apply();

        // listen for Online event
        $rootScope.$on('$cordovaNetwork:online', function(event, networkState){
            $scope.isOnline = true;
            $scope.network = $cordovaNetwork.getNetwork();

            $scope.$apply();
        })

        // listen for Offline event
        $rootScope.$on('$cordovaNetwork:offline', function(event, networkState){
            console.log("got offline");
            $scope.isOnline = false;
            $scope.network = $cordovaNetwork.getNetwork();

            $scope.$apply();
        })

  }, false);
})

In this controller you attach an event listener on the deviceready event (because it could be that the device would not have been yet initialized when this code runs) and you get the network information with: 在此控制器中,您可以在deviceready事件上附加事件侦听器(因为可能是此代码运行时设备尚未初始化)并且您获取网络信息:

$cordovaNetwork.getNetwork();

The information, about weather you're connected to the internet is obtained with the following line: 有关您连接到互联网的天气的信息可通过以下行获得:

$scope.isOnline = $cordovaNetwork.isOnline();

Then, you register two events $cordovaNetwork:online and $cordovaNetwork:online which trigger when the device gets online/offline. 然后,您注册两个事件$ cordovaNetwork:online和$ cordovaNetwork:online,当设备联机/离线时触发。 In them you then just update the $scope variables (). 在其中,您只需更新$ scope变量()。 Just for reference, the whole content of the www/js/app.js file should be: 仅供参考,www / js / app.js文件的全部内容应为:

// Ionic Starter App

// angular.module is a global place for creating, registering and retrieving Angular modules
// 'starter' is the name of this angular module example (also set in a <body> attribute in index.html)
// the 2nd parameter is an array of 'requires'
angular.module('starter', ['ionic', 'ngCordova'])

.run(function($ionicPlatform, $cordovaNetwork, $rootScope) {
  $ionicPlatform.ready(function() {
    // Hide the accessory bar by default (remove this to show the accessory bar above the keyboard
    // for form inputs)
    if(window.cordova && window.cordova.plugins.Keyboard) {
      cordova.plugins.Keyboard.hideKeyboardAccessoryBar(true);
    }
    if(window.StatusBar) {
      StatusBar.styleDefault();
    }

  });
})

.controller('MyCtrl', function($scope, $cordovaNetwork, $rootScope) {
    document.addEventListener("deviceready", function () {

        $scope.network = $cordovaNetwork.getNetwork();
        $scope.isOnline = $cordovaNetwork.isOnline();
        $scope.$apply();

        // listen for Online event
        $rootScope.$on('$cordovaNetwork:online', function(event, networkState){
            $scope.isOnline = true;
            $scope.network = $cordovaNetwork.getNetwork();

            $scope.$apply();
        })

        // listen for Offline event
        $rootScope.$on('$cordovaNetwork:offline', function(event, networkState){
            console.log("got offline");
            $scope.isOnline = false;
            $scope.network = $cordovaNetwork.getNetwork();

            $scope.$apply();
        })

  }, false);
});

In the index.html file, inside the ion-content tag paste the following content: 在index.html文件中,在ion-content标签内部粘贴以下内容:

<div class="card">
    <div class="item item-text-wrap">
        <h1>Network: {{network}}</h1>
    </div>
</div>


<div class="card">
    <div class="item item-text-wrap">
        <ion-toggle ng-model="isOnline" ng-checked="item.checked">
            <h1 ng-show="isOnline">I'm online</h1>
            <h1 ng-show="! isOnline">I'm offline</h1>
        </ion-toggle>
    </div>
</div>

Basically what we do here is we show the contents of the network variable (which is attached to the $scope via the controller). 基本上我们在这里做的是显示网络变量的内容(通过控制器附加到$ scope)。 Also, by using the ion-toggle component we show the “I'm online” / “I'm offline” notifications. 此外,通过使用离子切换组件,我们显示“我在线”/“我离线”通知。

Just for reference, the content of the whole index.html file should look like this: 仅供参考,整个index.html文件的内容应如下所示:

    <!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width">
    <title></title>

    <link href="lib/ionic/css/ionic.css" rel="stylesheet">
    <link href="css/style.css" rel="stylesheet">

    <!-- IF using Sass (run gulp sass first), then uncomment below and remove the CSS includes above
    <link href="css/ionic.app.css" rel="stylesheet">
    -->

    <!-- ionic/angularjs js -->
    <script src="lib/ionic/js/ionic.bundle.js"></script>

    <script src="lib/ngCordova/dist/ng-cordova.min.js"></script>
    <!-- cordova script (this will be a 404 during development) -->
    <script src="cordova.js"></script>

    <!-- your app's js -->
    <script src="js/app.js"></script>
</head>
<body ng-app="starter" ng-controller="MyCtrl">

    <ion-pane>
        <ion-header-bar class="bar-stable">
            <h1 class="title">Ionic Blank Starter</h1>
        </ion-header-bar>

        <ion-content padding="true">
            <div class="card">
                <div class="item item-text-wrap">
                    <h1>Network: {{network}}</h1>
                </div>
            </div>

            <div class="card">
                <div class="item item-text-wrap">
                    <ion-toggle ng-model="isOnline" ng-checked="item.checked">
                        <h1 ng-show="isOnline">I'm online</h1>
                        <h1 ng-show="! isOnline">I'm offline</h1>
                    </ion-toggle>
                </div>
            </div>

        </ion-content>
    </ion-pane>
</body>
</html>

In order to test this application you should run it on your device (because you can't disable network in iOS simulator). 为了测试此应用程序,您应该在您的设备上运行它(因为您无法在iOS模拟器中禁用网络)。 If you have an Android device plugged to your computer (and all the SDKs in place) you can run the following to commands to get your application running on your Android device: 如果您将Android设备插入计算机(以及所有适当的SDK),则可以运行以下命令以使您的应用在Android设备上运行:

ionic build android && ionic run android

just use this code in your app.js inside .run 只需在.run里面的app.js中使用此代码即可

if (window.Connection) {
       if (navigator.connection.type == Connection.NONE) {
         toast.show("Internet is disconnected on your device");
       };
     };

If you updated recently ( running cordova 5.0 ), my guess would be the cordova-plugin-whitelist needs to be installed. 如果您最近更新( 运行cordova 5.0 ),我的猜测是需要安装cordova-plugin-whitelist After installing, add this to config.xml to allow all http/s requests : 安装后,将其添加到config.xml以允许所有http / s请求:

allow-intent href="http://\*/\*"

allow-intent href="https://\*/\*"

Shell: 贝壳:

ionic plugin add https://github.com/apache/cordova-plugin-whitelist.git

Config.xml: config.xml文件:

<allow-navigation href="*" />

Before you call the "connection", you need to check the device: 在调用“连接”之前,您需要检查设备:

document.addEventListener("deviceready", function () {
    ...
});

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM