Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2016
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.  async function checkLogin(userName,password){
  2.      console.log("ide");
  3.      console.log(userName);
  4.      console.log(password);
  5.      let cim = 'http://localhost:3000/users?username=' + userName + '&password=' + password;
  6.      console.log(cim);
  7.      
  8.     ponse = await fetch('http://localhost:3000/users?username=asd&password=123', {
  9.         method: 'GET'
  10.     });
  11.    
  12.      console.log("valasz1");
  13.      console.log(response);
  14.      
  15.     return response.json();
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement