如何在ionic2 app中检测运行时的互联网连接?

jma*_*ann 4 cordova ionic-framework ionic2

我真的需要你的帮助.我正在尝试检测我的Ionic 2移动应用程序上是否存在互联网连接.我需要随时知道移动设备是否丢失连接以及何时恢复连接,如果有wifi连接..所以观察者和网络Cordova插件的wifi检测,只是做我需要的实现,我在页面构造函数中有两个使用者(用于连接和断开连接)来设置我在页面逻辑中使用的布尔实例变量.这是我的代码

app.component.ts

import { NgModule, ErrorHandler } from '@angular/core';
import { IonicApp, IonicModule, IonicErrorHandler } from 'ionic-angular';
import { MyApp } from './app.component';

import { HomePage } from '../pages/home/home';
import { Geolocation } from '@ionic-native/geolocation';
import { Network } from '@ionic-native/network';
//import { Network } from 'ionic-native';
import { StatusBar } from '@ionic-native/status-bar';
import { SplashScreen } from '@ionic-native/splash-screen';

 @NgModule({
    declarations: [
      MyApp,
      HomePage
    ],
    imports: [
      IonicModule.forRoot(MyApp)
    ],
    bootstrap: [IonicApp],
    entryComponents: [
       MyApp,
       HomePage    
    ],
    providers: [
      StatusBar,
      SplashScreen,
      {provide: ErrorHandler, useClass: IonicErrorHandler},    
      Geolocation,
      Network
   ]
  })
  export class AppModule {}




home.ts

import { Component } from '@angular/core';
import { NavController, Platform } from 'ionic-angular';
import { Geolocation } from '@ionic-native/geolocation';
import { Network } from '@ionic-native/network';


@Component({
 selector: 'page-home',
 templateUrl: 'home.html'
})
 export class HomePage {

private online:boolean = false;
private wifi:boolean = false;
public disconnectSubscription:any;
public connectSubscription:any;

constructor(private nav: NavController, private geolocation: Geolocation, private network: Network, private platform: Platform) {  
    this.platform.ready().then( () => {
      //listener
      this.connectSubscription = this.network.onConnect().subscribe(() => {
          alert('connected!');
          this.online = true;

          setTimeout(() => {
            // before we determine the connection type.  Might need to wait
            if (this.network.type === 'wifi') {
              this.hayWIFI;
              alert('wifi connection');
            }
          }, 3000);
      });

      //listener
      this.disconnectSubscription = this.network.onDisconnect().subscribe(() => {            
          this.online = false;
          alert('without connection!');
      });
    });
}
Run Code Online (Sandbox Code Playgroud)

}

问题是事件被触发像onchange事件..当我手动取出移动连接或应用程序从休眠状态恢复时(当它已经丢失连接时),我只看到警报,但不是应用程序只是初始化 :(我已尝试在主页甚至在MyApp页面(app.component.ts)的构造函数suscriptors'没有成功

我究竟做错了什么?我怎样才能满足要求?互联网上有许多不同的方法,但看起来更老,甚至在导入网络服务方面也有所不同.我的离子信息是

Ionic Framework:2.3.0
Ionic App脚本:1.1.4
Angular Core:2.4.8
Angular Compiler CLI:2.4.8
节点:6.4.0
OS平台:Windows 10
Navigator平台:Win32
用户代理:Mozilla/5.0(Windows NT 10.0 ; WOW64)AppleWebKit/537.36(KHTML,像Gecko)Chrome/57.0.2987.133 Safari/537.36

提前致谢

The*_*lis 9

如果你想在组件(页面)中监听网络状态,我建议在其中一个页面生命周期事件中执行此操作,例如ionViewDidLoad()ionViewDidEnter().通常,您希望确保构造函数尽可能少地处理逻辑,因为它只会触发一次.你可以在这里阅读更多相关信息.

在我的应用程序中,我正在侦听提供程序中的网络状态,该提供程序充当Angular HTTP模块的包装器.为了实现这一点,我必须初始化块中的所有逻辑,platform.ready()以确保设备实际上已准备好开始被操作.这是我的提供商的样子:

export class HTTP {
  public online:boolean = true;
  public base:string; // this will be set in the constructor based on if we're in dev or prod
  public token:string = null;

  constructor(public platform:Platform, public http: Http, public events:Events, public cache:CacheService, private network:Network) {
    if(document.URL.includes('https://') || document.URL.includes('http://')){
      this.base = "http://127.0.0.1:3001/";
    } else {
      this.base = "https://url.to_actual_URL.com/";
    }

    this.platform.ready().then(() => {
      let type = this.network.type;

      //console.log("Connection type: ", this.network.type);
      // Try and find out the current online status of the device
      if(type == "unknown" || type == "none" || type == undefined){
        //console.log("The device is not online");
        this.online = false;
      }else{
        //console.log("The device is online!");
        this.online = true;
      }
    });

    this.network.onDisconnect().subscribe( () => {
      this.online = false;
      //console.log('network was disconnected :-(');
    });

    this.network.onConnect().subscribe( () => {
      this.online = true;
      //console.log('network was connected :-)');
    });
  }
}
Run Code Online (Sandbox Code Playgroud)