3

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

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

1 回答 1

0

请检查这个

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

     this.nav.present(loading);

完成加载 ionic2 - 文档

于 2016-07-28T06:51:39.197 回答