Skip to content

Instantly share code, notes, and snippets.

@killtheliterate
Created September 4, 2017 21:43
Show Gist options
  • Save killtheliterate/bd669e92d368053d3a19d0ab7f3d0458 to your computer and use it in GitHub Desktop.
Save killtheliterate/bd669e92d368053d3a19d0ab7f3d0458 to your computer and use it in GitHub Desktop.
window.fetch('/endpoing', {
method: 'POST',
body: new window.FormData(file)
})
// add something to check for 200 etc.
.then(res => res.json())
.then(console.log)
.catch(console.error)
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment