Skip to content

Instantly share code, notes, and snippets.

@numfin
Created March 29, 2018 12:10
Show Gist options
  • Save numfin/7d218040edbdf31903ea1c9799fda228 to your computer and use it in GitHub Desktop.
Save numfin/7d218040edbdf31903ea1c9799fda228 to your computer and use it in GitHub Desktop.
const body = {
message: 'hi'
}
const data = new FormData();
data.append( "json", JSON.stringify( body ) );
fetch("/echo/json/", {
method: "POST",
body: data
})
.then(function(res){ return res.json(); })
.then(function(data){ console.log(JSON.stringify(data)) })
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment