最近追加された LoadingController をこのように使用しようとしています:
let loading=this.load.create({
content: "Connexion au serveur Migal en cours..."
});
loading.present();
this.http.get(this.urlCheckerForm.value.migalUrl+'/action/MobileApp/URLChecker')
.map(res => res.json())
.subscribe(
data => this.newConnection(data,loading),
error => this.catchURLError(loading));
loading.dismiss();
基本的に、ページが読み込まれる前に読み込み中のポップインを表示し、後で閉じたいだけです。
Ionic 2 Documentationの例に従いましたが、まったく機能していないようです...
編集:ローディングコンポーネントは表示されません。