Skip to content

Instantly share code, notes, and snippets.

@NyaGarcia
Created April 17, 2020 20:00
Show Gist options
  • Save NyaGarcia/84282da2df6fffe6885001a5d6127921 to your computer and use it in GitHub Desktop.
Save NyaGarcia/84282da2df6fffe6885001a5d6127921 to your computer and use it in GitHub Desktop.
Subscription to ajax Observables
ghibliFilmsResponse$.subscribe(console.log);
// Output: AjaxResponse {xhr: {}, request: {}...}
ghibliFilm$.subscribe(films => console.log(films));
// Output: [Object, Object, Object...]
ghibliFilmWithHeaders$.subscribe(console.log);
// Output: AjaxResponse {xhr: {}, request: {}...}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment