Apr 15, 2021
--
Nice Blog , thanks for this awesome examples with explanation , I recommend also using catchError , example : catchError(error => {
if (error.error instanceof ErrorEvent) {
this.errorMsg = `Error: ${error.error.message}`;
} else {
this.errorMsg = `Error: ${error.message}`;
}
return of([]);
})