私はこのコードを持っていました
return this.http.get(this.pushUrl)
.toPromise()
.then(response => response.json().data as PushResult[])
.catch(this.handleError);
observable
の代わりにPromise
を使用したかった
呼び出し元のメソッドにエラーを返すにはどうすればよいですか?
Promise.reject
と同等のものは何ですか?
doSomeGet() {
console.info("sending get request");
this.http.get(this.pushUrl)
.forEach(function (response) { console.info(response.json()); })
.catch(this.handleError);
}
private handleError(error: any) {
console.error('An error occurred', error);
// return Promise.reject(error.message || error);
}
}
呼び出しメソッドは次のとおりです。
getHeroes() {
this.pushService
.doSomeGet();
// .then(pushResult => this.pushResult = pushResult)
// .catch(error => this.error = error);
}
private handleError(error: any) {
return Observable.throw('Some error information');
}
http.request()から例外を正しくキャッチする方法 も参照してください。
RxJS 6ではObservable.throw()
がthrowError()
に変更されました
Observable.throw(new Error());
// becomes
throwError(new Error());