Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2017
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. Arquivo JS:
  2. var jsonsave = [];
  3.  
  4. var dado = new Object();
  5. dado.nome= "João";
  6. dado.cpf = "000";
  7. dado.teste = "teste";
  8. var jason = JSON.stringify(dado);
  9. jsonsave.push(jason);
  10.  
  11.  
  12. $.ajax({
  13. type: "POST",
  14. url: "http://localhost/moodle/my/index.php",
  15. data: "data="+jsonsave+"&ENVIO_RESPOSTAS=true",
  16. success: function(data){
  17. console.log('foi');
  18. },
  19. error: function(data)
  20. {
  21. console.log('n foi');
  22.  
  23. }
  24. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement