什么是等效代码$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()));
});
}