Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. this._dataService.create(newItem)
  2. .pipe(
  3. switchMap( id => {
  4. return this._dataService.getDetails(id);
  5.  
  6. })
  7. )
  8. .subscribe(result => {
  9. // Do stuff with result
  10. },
  11. error => {
  12. console.log(error);
  13. }));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement