$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()));
});
}
答案 0 :(得分:0)
请检查
let loading = Loading.create({
content: "Please wait...",
duration: 3000
});
this.nav.present(loading);
浏览loading ionic2 - 文档