8

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

編集:ローディングコンポーネントは表示されません。

4

4 に答える 4

15

コードの問題は、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)
    );

  }
}
于 2016-08-22T17:23:18.387 に答える