web-dev-qa-db-ja.com

Ionic 2-コントローラーの読み込みが機能しない

最近追加された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 の例に従いましたが、まったく機能していないようです...

編集:読み込み中のコンポーネントも表示されません。

8
Thomas Dussaut

コードの問題は、httpリクエストを作成してからdismiss()を呼び出しているが、dismiss()メソッドがhttpリクエストの終了を待たないことです。 このプランカー をご覧ください。

コードはほとんど自明です:

import { NavController, LoadingController } from 'ionic-angular/index';
import { Http, Response } from '@angular/http';
import { Component } from "@angular/core";
import 'rxjs/Rx';

@Component({
  templateUrl:"home.html"
})
export class HomePage {

  private users : Array<any>

  constructor(private http: Http, private loadingCtrl: LoadingController) {

    // Create the popup
    let loadingPopup = this.loadingCtrl.create({
      content: 'Loading data...'
    });

    // Show the popup
    loadingPopup.present();

    // Get the data
    this.http.get('https://jsonplaceholder.typicode.com/users')
      .map((res: Response) => res.json())
      .subscribe(
        data => {

          // I've added this timeout just to show the loading popup more time
          setTimeout(() => {
            this.users= data;
            loadingPopup.dismiss();
          }, 1000);

          // Should be just this:
          // this.users= data;
          // loadingPopup.dismiss();
        },
        err => console.error(err)
    );

  }
}
15
sebaferreras

「loading.dismiss();」を入れましたサブスクライブ{}で、それはうまく機能します:)

                    this.http.get(url)
                        .subscribe(data =>{
                            this.items=JSON.parse(data['_body']).results;
                            loading.dismiss();
                        },
1
Vincent H

ionic ionViewLoaded()を使用してLoading Controllerをポップアップし、ビューがロードされてコンテンツがサブスクリプションからフェッチされたときにそれを閉じることができます。

ionViewLoaded() {
  let lr = this.loading.create({
    content: 'Your Display Message...',
  });

  lr.present().then(() => {
    this.Yourservice.Yourfunction()
      .subscribe(res => {
        this.yourresult = res;
      });
    lr.dismiss();
  });
}

このようにコードを構成して、ローダーを閉じる前にサブスクリプションが完了していることを確認することもできます。

ionViewLoaded() {
      let lr = this.loading.create({
        content: 'Your Display Message...',
      });

      lr.present().then(() => {
        this.Yourservice.Yourfunction()
          .subscribe(
          data => this.yourresult = data,
          error => console.log(error),
          ()=> lr.dismiss()
          );

      });
    }
1
Donsplash

ionicの最後のバージョンでは、dismissイベントを処理する必要があります。

let loading = this.load.create({
    content: "Connexion au serveur Migal en cours..."
});

loading.present();

loading.onDidDismiss().then(() => {
     do thinks..... 
});
0
Vanojx1