の同等のコードは何ですか$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()));
});
}