Property 'then' does not exist on type Observable Property 'then' does not exist on type Observable angular angular

Property 'then' does not exist on type Observable


An Observable doesn't have a promise-like method as then. In your service you are performing an http call which returns an Observable and you map this Observable to another Observable.

If you really want to use the promise-style API, you need to convert your Observable to a promise using the toPromise operator. This operator is not available by default so that you also need to import it once in your project.

import 'rxjs/add/operator/toPromise';

Using promises is okay, but there are some good reasons to use the Observable APIs directly. For details, please see this blog post advertising the usage of Observables.

If you want to use the Observable API directly then replace your then call with a subscribe call. But remember that every subscription also needs to be cancelled when your component gets destroyed.

getConnections(): void {  this.subscription = this.connectionService.getConnections()    .subscribe(connections => this.connections = connections);}ngOnDestroy() {  this.subscription.unsubscribe();}

Another option when working with Observables is to assign the resulting Observable to a field in your component and then use the async pipe. Doing so, Angular will handle the subscriptions for you.


in between add .toPromise() to make it a promise


for Angular I solved it in the following way, I just needed to add the .toPromise method to convert the observer.

GetUsersData() {    const UsuariosCollection = this.afs.collection('usuarios').get();    UsuariosCollection.toPromise().then((snapshot) => {      snapshot.forEach((doc) => {        console.log(doc.id+" => "+doc.data());              });    });  }