私はionic2でネットワークAPIを使用しようとしていますが、イオン性ネイティブドキュメントの例が動作していません。 私のコードは次のとおりです。ネットワークステータス、ionic2エラー
import { Network } from 'ionic-native';
networkType:string;
constructor() {
// watch network for a connection
let connectSubscription = Network.onConnect().subscribe(() => {
this.networkType = Network.type;
});
}
任意の場合、私はエラーProperty 'type' does not exist on type 'typeof Network'.
を取得しています私はionic2でイオンネイティブをうまく使いました。助けてください。私はこの同じ問題を抱えていた
* @advanced
* The `connection` property will return one of the following connection types: `unknown`, `ethernet`, `wifi`, `2g`, `3g`, `4g`, `cellular`, `none`
*/
export declare class Network {
/**
* Return the network connection type
*/
static connection: string;
/**
* Get notified when the device goes offline
* @returns {Observable<any>} Returns an observable.
*/
static onDisconnect(): Observable<any>;
/**
* Get notified when the device goes online
* @returns {Observable<any>} Returns an observable.
*/
static onConnect(): Observable<any>;
}
。私のネットワークプラグインはバージョン1.3.1です。そうだとしたら、onConnectサブスクリプションを起動するのに問題があります。 – Astravagrant