如何在离子2中实施HUD(旋转/活动指示剂)?

时间:2016-02-15 05:34:53

标签: web-services http angular hud ionic2

$ionicLoading的等效代码是什么。如果我有以下代码片段,我如何为配置文件中的每个http请求设置加载HUD。 (即,当应用程序调用Web服务时,它将自动添加HUD)

makePostRequest() {
    this.http.post("https://domain/post", "ur=kkr")
    .subscribe(data => {
        //Done loading, stop!
    }, error => {
        console.log(JSON.stringify(error.json()));
    });
}

1 个答案:

答案 0 :(得分:0)

请检查

  let loading = Loading.create({
    content: "Please wait...",
    duration: 3000
  });

     this.nav.present(loading);

浏览loading ionic2 - 文档