I am using Angular 2 HTTP, and have a ponent subscribing to the response. However, when there is an error, the catch method does not return the error to the subscribed ponent. It just throws it in the console.
saveFinalize(fcData: LastForecastInterface) {
let responseData = JSON.stringify(fcData);
let body = responseData;
const headers = new Headers();
headers.append('Content-Type', 'application/json;charset=UTF-8');
return this.http.post('/saveFinalize', body, { headers: headers })
.map((data: Response) => data.json())
.catch(this.handleError);
}
public handleError(error: Response | any) {
console.log('err: ', error)
let errMsg: string;
if (error instanceof Response) {
const body = error.json() || '';
const err = body.error || JSON.stringify(body);
errMsg = `${error.status} - ${error.statusText || ''} ${err}`;
} else {
errMsg = error.message ? error.message : error.toString();
}
console.error(errMsg);
// return Observable.throw(errMsg);
return errMsg;
}
I am using Angular 2 HTTP, and have a ponent subscribing to the response. However, when there is an error, the catch method does not return the error to the subscribed ponent. It just throws it in the console.
saveFinalize(fcData: LastForecastInterface) {
let responseData = JSON.stringify(fcData);
let body = responseData;
const headers = new Headers();
headers.append('Content-Type', 'application/json;charset=UTF-8');
return this.http.post('/saveFinalize', body, { headers: headers })
.map((data: Response) => data.json())
.catch(this.handleError);
}
public handleError(error: Response | any) {
console.log('err: ', error)
let errMsg: string;
if (error instanceof Response) {
const body = error.json() || '';
const err = body.error || JSON.stringify(body);
errMsg = `${error.status} - ${error.statusText || ''} ${err}`;
} else {
errMsg = error.message ? error.message : error.toString();
}
console.error(errMsg);
// return Observable.throw(errMsg);
return errMsg;
}
And my subscribed ponent does not get back a response
saveFinalize() {
this.loadingData = true;
return this.httpService.saveFinalize(this.getFc.fcData)
.subscribe(response => {
this.loadingData = false;
console.log(response);
let saveResponse = response.success ? 'Successfully Saved Finalized!' : 'Error Saving Finalized! - ' + response.message;
let respType = response.success ? 'success' : 'danger';
this.alertSvc.showAlert(saveResponse, respType);
});
}
Share
Improve this question
edited Mar 8, 2017 at 17:20
Matthew Green
10.4k4 gold badges39 silver badges55 bronze badges
asked Mar 8, 2017 at 16:54
ahrobinsahrobins
3922 gold badges6 silver badges14 bronze badges
1
-
handleError
function needs to return anObservable
forcatch
to to work. See this link: github./Reactive-Extensions/RxJS/blob/master/doc/api/core/… – Emin Laletovic Commented Mar 8, 2017 at 16:58
2 Answers
Reset to default 10See this code here: (It is from https://angular.io/docs/ts/latest/guide/server-munication.html)
getHeroes() {
this.heroService.getHeroes()
.subscribe(
heroes => this.heroes = heroes,
error => this.errorMessage = <any>error);
}
Notice there are 2 arguments for .subscribe() method. One is the response which you use, and the next one is the error. In order to pass the error to the subscribed ponent you must use the later argument, which will make your code looks like this:
return this.httpService.saveFinalize(this.getFc.fcData).subscribe(response => {
this.loadingData = false;
console.log(response);
let saveResponse = response.success ? 'Successfully Saved Finalized!' : 'Error Saving Finalized! - ' + response.message;
let respType = response.success ? 'success' : 'danger';
this.alertSvc.showAlert(saveResponse, respType);
}, error => {
// the errorMessage will be passed here in this "error" variable
});
When the subscribed method returns a successful response, you will only get your response. But when the subscribed method throws an error you won't get your response, you will only get the error (which is the second argument of the subscribe() method).
You also need to throw the error from the handleError() method. So instead of only return the string value (return errMsg;
), you should use return Observable.throw(errMsg);
.
You can do
.catch((response: Response) => {
return Observable.of(response);
});
which will return the response for you.
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743648769a4484204.html
评论列表(0条)