Skip to content

Instantly share code, notes, and snippets.

@e7h4n
Created February 9, 2014 08:49
Show Gist options
  • Select an option

  • Save e7h4n/8896331 to your computer and use it in GitHub Desktop.

Select an option

Save e7h4n/8896331 to your computer and use it in GitHub Desktop.
var files = fileEl.files;
var formData = new FormData();
_.toArray(files).forEach(function (file) {
formData.append('images[]', file);
});
var xhr = new XMLHttpRequest();
xhr.open('post', '/uni/api/' + $routeParams.course + '/images', true);
xhr.send(formData);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment