Advertisement
ADL_Rodrigo_Silva

Untitled

May 27th, 2022
167
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.  
  2. const getBtn = document.getElementById("get-btn");
  3. const postBtn = document.getElementById("post-btn");
  4.  
  5. // *************************
  6. // *** SEND HTTP REQUEST ***
  7. // *************************
  8. const sendHttpRequest = (method, url, data) =>
  9.     {
  10.        
  11.     }
  12.  
  13. // *************************
  14. // ******* GET DATA ********
  15. // *************************
  16. const getData = () =>
  17.     {
  18.         // llamar a un api, con un método, una url y eventualmente datos
  19.         sendHttpRequest('GET', 'https://reqres.in/api/users');
  20.     }
  21.  
  22. // *************************
  23. // ******* SEND DATA *******
  24. // *************************
  25. const sendData = () =>  // El propósito de esta función es REGISTRARSE
  26.     {
  27.         // llamar a un api, con un método, una url y eventualmente datos
  28.         sendHttpRequest('POST', 'https://reqres.in/api/register',
  29.             {
  30.                 "email": "eve.holt@reqres.in",
  31.                 "password": "pistol"
  32.             });
  33.     }
  34.  
  35. // *************************
  36. // *************************
  37. // Este botón me permitirá recibir información
  38. getBtn.addEventListener('click', getData);
  39. // Este botón me permitirá registrarme, enviando datos para ello
  40. postBtn.addEventListener('click', sendData);
  41.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement