javascript - Fetch: POST JSON data - Stack Overflow

PHOTO EMBED

Sat Jan 22 2022 06:40:20 GMT+0000 (Coordinated Universal Time)

Saved by @bronius #javascript

fetch('https://httpbin.org/post', {
  method: 'POST',
  headers: {
    'Accept': 'application/json, text/plain, */*',
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({a: 7, str: 'Some string: &=&'})
}).then(res => res.json())
  .then(res => console.log(res));
content_copyCOPY

https://stackoverflow.com/questions/29775797/fetch-post-json-data