Guest User

Untitled

a guest
Dec 11th, 2017
361
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. $.ajax({
  2. url: '<?= base_url('login/Pesquisar'); ?>',
  3. type: 'POST',
  4. data: $("#formulario_pesquisa").serialize(),
  5. dataType: 'json',
  6. success: function(data){
  7. alert(JSON.stringify(data))
  8. alert(Object.keys(data));
  9. alert(data.email);
  10. }
  11. });
  12.  
  13. alert(JSON.stringify(data)) >>> {"cnpj ":"68.207.717/0001-42","email ":"teste.teste@email.com","Logado":true)
  14.  
  15. alert(Object.keys(data)); >> cnpj ,email ,Logado
  16.  
  17. alert(data.email); >> undefined
  18.  
  19. var json = {"email ":"teste.teste@email.com"};
  20. console.log(json.email) <= undefined
  21.  
  22. var json = {"email":"teste.teste@email.com"};
  23. console.log(json.email) <= teste.teste@email.com
Add Comment
Please, Sign In to add comment