Created
April 17, 2020 20:00
-
-
Save NyaGarcia/84282da2df6fffe6885001a5d6127921 to your computer and use it in GitHub Desktop.
Subscription to ajax Observables
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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