How to implement HUD (spinner / activity indicator) in ionic 2?

400 Views Asked by At

What is equivalent code for $ionicLoading. If I have below code snippet how can I set up loading HUD for every http request in a config file. (i.e. It will automatically add HUD when application calls a web-service)

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

There are 1 best solutions below

0
On

Please check this

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

     this.nav.present(loading);

go through loading ionic2 - documentation