Skip to content

Instantly share code, notes, and snippets.

@NyaGarcia
Created July 15, 2020 11:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save NyaGarcia/7b3ea0a4214e29d714f8bbcee80cb109 to your computer and use it in GitHub Desktop.
Save NyaGarcia/7b3ea0a4214e29d714f8bbcee80cb109 to your computer and use it in GitHub Desktop.
Making several AJAX requests with map operator
import { map } from 'rxjs/operators';
import { ajax } from 'rxjs/ajax';
import { of } from 'rxjs';
const pokemonId$ = of(1, 5, 6);
function getPokemonName(id: number) {
return ajax.getJSON(`https://pokeapi.co/api/v2/pokemon/${id}`);
}
pokemonId$
.pipe(
map(id => getPokemonName(id)),
)
.subscribe(console.log);
// Output: Observable {}, Observable {}, Observable {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment