In Angular 4, simply retry the request using RxJS operator called .retry (). It is automatically presubscribed to an Observable, thus reissuing the request when an error occurred!
Import RxJS for using retry () method-
import 'rxjs/add/operator/retry';
HTTP Observables for retry the failed request
http.get('/api/users') .retry(2) //Retry this request up to 2 times. .subscribe(data => {console.log(data);}, //Successful responses call the first callback. (err: HttpErrorResponse) => { if (err.error instanceof Error) { console.log('Error - ', err.error.message); }else { console.log('Error status - ${err.status}, and Error Detail - ${err.error}'); } } });
References -
I hope you are enjoying with this post! Please share with you friends. Thank you!!