Guest User

Untitled

a guest
Dec 18th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. var json={
  2. usuario : this.nome,
  3. senha : this.senha
  4. };
  5.  
  6. var myJson=JSON.stringify(json);
  7.  
  8.  
  9. console.log(json);
  10.  
  11. return this.http.post(this.url,JSON.stringify(json))
  12. .map(res=> res.json())
  13. .subscribe(data =>{
  14. console.log(data);
  15. });
Add Comment
Please, Sign In to add comment