こんにちは、catchブロック(サービス)から送信されたエラーを受信しようとしています。複数のコンポーネントでは、エラーメッセージが表示されたポップアップを表示する必要があります。ジェネリックメソッドを作成し、サービスブロック内で呼び出す方法を教えてください。 「showErrorPage()」で今やっていることのように。
import { Injectable } from '@angular/core';
import { Http, Headers, Response, RequestOptions } from '@angular/http';
import { Observable } from 'rxjs';
import 'rxjs/add/operator/map'
@Injectable()
export class DataService {
private reqData = {};
private url: string;
constructor(private http: Http) {
}
getResult(searchObject: {}): Observable<Response> {
// some logic
return this.http.post(<my url>, <data to be sent>)
.map((response: Response) => {
return response;
})
.catch((error: any) => {
if (error.status === 302 || error.status === "302" ) {
// do some thing
}
else {
return Observable.throw(new Error(error.status));
}
});
}
}
そして私のコンポーネントでは、私はそれを次のように呼んでいます
import { Component,EventEmitter, Output, OnInit, OnDestroy } from '@angular/core';
import { ActivatedRoute, Router } from '@angular/router';
// importing DataService ';
@Component({
selector: 'o-result',
templateUrl: './o-result.component.html',
})
export class AComp implements OnInit {
constructor(
private dataService: DataService
){
}
ngOnInit() {
this.dataService.getResult(<url>, <params>)
.subscribe(
response => {
// doing logic with responce
}
,
error => {
this.showErrorPage();
}
)
}
showErrorPage(): void {
// displaying error in popup
}
}
ヘッダー、HTTPメソッド、キャッシュ、エラー処理、再試行ロジックなどのデータ管理の詳細は、コンポーネントや他のデータコンシューマーとは無関係です。
実装は正しいようです。
さらに、 http client ドキュメントは同じ実装を提供します。