Fetch API POST form data React code example

Example 1: submit formdata in fetch

// Build formData object.
let formData = new FormData();
formData.append('name', 'John');
formData.append('password', 'John123');

fetch("api/SampleData",
    {
        body: formData,
        method: "post"
    });

Example 2: javascript fetch api get

fetch('http://example.com/movies.json')
  .then(response => response.json())
  .then(data => console.log(data));

Example 3: fetch suntax

fetch('http://example.com/movies.json')
  .then((response) => {
    return response.json();
  })
  .then((data) => {
    console.log(data);
  });

Tags:

Misc Example