Skip to content

Instantly share code, notes, and snippets.

@NaClYen
Created December 7, 2021 06:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save NaClYen/94bcfbc54246c580a090f7158671b2df to your computer and use it in GitHub Desktop.
Save NaClYen/94bcfbc54246c580a090f7158671b2df to your computer and use it in GitHub Desktop.
fetch post json
fetch('http://localhost:8888/test', {
method: 'POST',
body: JSON.stringify({ name: 'NaCl' }),
headers: {
'content-type': 'application/json'
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment