Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Last active January 18, 2019 15:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/936dd10deef3332b427d3cdd76a65490 to your computer and use it in GitHub Desktop.
Save parzibyte/936dd10deef3332b427d3cdd76a65490 to your computer and use it in GitHub Desktop.
// Del lado del cliente no hacer esto:
xhr.send(encodeURIComponent(foto)); //Codificar y enviar
// Sino en cambio, esto:
xhr.send(JSON.stringify({"foto": foto, "nombre": document.querySelector("#inputNombre").value}));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment