Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- const getBtn = document.getElementById("get-btn");
- const postBtn = document.getElementById("post-btn");
- // *************************
- // *** SEND HTTP REQUEST ***
- // *************************
- const sendHttpRequest = (method, url, data) =>
- {
- }
- // *************************
- // ******* GET DATA ********
- // *************************
- const getData = () =>
- {
- // llamar a un api, con un método, una url y eventualmente datos
- sendHttpRequest('GET', 'https://reqres.in/api/users');
- }
- // *************************
- // ******* SEND DATA *******
- // *************************
- const sendData = () => // El propósito de esta función es REGISTRARSE
- {
- // llamar a un api, con un método, una url y eventualmente datos
- sendHttpRequest('POST', 'https://reqres.in/api/register',
- {
- "email": "eve.holt@reqres.in",
- "password": "pistol"
- });
- }
- // *************************
- // *************************
- // Este botón me permitirá recibir información
- getBtn.addEventListener('click', getData);
- // Este botón me permitirá registrarme, enviando datos para ello
- postBtn.addEventListener('click', sendData);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement