Guest User

Untitled

a guest
Dec 11th, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. var request = new XMLHttpRequest();
  2. request.open('GET', 'https://ghibliapi.herokuapp.com/films', true);
  3. request.onload = function() {
  4.  
  5. fetch('url da api', { headers:{ //seus headers } })
  6. .then(retorno =>{
  7. //faz sua tratativa do retorno aqui.
  8. })
  9. .catch(error => console.log(error))
Add Comment
Please, Sign In to add comment