I started using Angular2 Observable, but I can\'t find something similar to .then that I used with Promises.
Observable
.then
Promises
This is what I want
You need to import the Rx toPromise operator like
import 'rxjs/add/operator/toPromise';
Cheers!