Skip to content

Instantly share code, notes, and snippets.

@noris666
Forked from Tamal/upload_snap.js
Created January 5, 2017 19:29
Show Gist options
  • Save noris666/b12dffe8e0c69143f57ff2da7b60581d to your computer and use it in GitHub Desktop.
Save noris666/b12dffe8e0c69143f57ff2da7b60581d to your computer and use it in GitHub Desktop.
React Native File upload using XMLHttpRequest
_uploadSnap() {
var url = 'http://example.com/upload'; // File upload web service path
var photo = {
uri: this.state.picturePath, // CameralRoll Url
type: 'image/jpeg',
name: 'photo.jpg',
};
var formData = new FormData();
formData.append("file", photo);
var xhr = new XMLHttpRequest();
xhr.open('POST', url);
console.log('OPENED', xhr.status);
xhr.onprogress = function () {
console.log('LOADING', xhr.status);
};
xhr.onload = function () {
console.log('DONE', xhr.status);
};
xhr.setRequestHeader('authorization', this.state.token);
xhr.send(formData);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment