RxJS - Operatore di gestione degli errori catchError

Questo operatore si occupa di rilevare gli errori sull'Osservabile di origine restituendo un nuovo Osservabile o un errore.

Sintassi

catchError(selector_func: (err_func: any, caught: Observable) => O):Observable

Parametri

selector_funct - Il selettore func accetta 2 argomenti, funzione di errore e catturato che è un osservabile.

Valore di ritorno

Restituisce un osservabile basato sul valore emesso da selector_func.

Esempio

import { of } from 'rxjs';
import { map, filter, catchError } from 'rxjs/operators';

let all_nums = of(1, 6, 5, 10, 9, 20, 40);
let final_val = all_nums.pipe(
   map(el => {
      if (el === 10) {
         throw new Error("Testing catchError.");
      }
      return el;
   }),
   catchError(err => {
      console.error(err.message);
      return of("From catchError");
   })
);
final_val.subscribe(
   x => console.log(x),
   err => console.error(err),
   () => console.log("Task Complete")
);

Produzione