Skip to content

Instantly share code, notes, and snippets.

@itsalb3rt
Created December 8, 2018 02:33
Show Gist options
  • Save itsalb3rt/fc1155182cbaddd5a5b34f2b187febba to your computer and use it in GitHub Desktop.
Save itsalb3rt/fc1155182cbaddd5a5b34f2b187febba to your computer and use it in GitHub Desktop.
//La documentacion oficial no indica uso
const params = new URLSearchParams();
params.append('name', name);
params.append('foo', bar);
params.append('description', description);
axios({
method: 'post',
url: 'http://localhost/controller/action',
data: params
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment