“retorno observable de la función angular” Código de respuesta

retorno observable de la función angular

1. Better practise is to use Observable:

import { catchError } from 'rxjs/operators';
import { throwError } from 'rxjs';

bbb() {
 return this.http.get(this.url)
   .pipe(
     catchError(err => {
       console.log('err', err);
       return throwError('Something bad happened; please try again later.');
     });
}

2. And, then simply just subscribe to bbb:

import { Subscription } from 'rxjs';

testSubscription: Subscription;

ngAfterContentInit() {
    this.testSubscription = this.bbb()
      .subscribe(son => {
        console.log('son', son); // here you get the result
      });
}

3. Don't forget to unsubscribe:

ngOnDestroy() {
  this.testSubscription.unsubscribe();
}
Coding Era

Mostrar observable en HTML Angular

 
<!--.html file-  use '|async' pipe -->
<ul class=""  scope="row" *ngFor="let aboutus of this.pageData |async " >             
		<li>{{aboutus.key}} {{aboutus.data.details}} </li>                               
 </ul>
Farwa Miraj

Respuestas similares a “retorno observable de la función angular”

Preguntas similares a “retorno observable de la función angular”

Más respuestas relacionadas con “retorno observable de la función angular” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código