Answers for "send form data with javascript fetch to a route"

12

how to send post request js fetch

componentDidMount() {
    // Simple POST request with a JSON body using fetch
    const requestOptions = {
        method: 'POST',
        headers: { 'Content-Type': 'application/json' },
        body: JSON.stringify({ title: 'React POST Request Example' })
    };
    fetch('https://jsonplaceholder.typicode.com/posts', requestOptions)
        .then(response => response.json())
        .then(data => this.setState({ postId: data.id }));
}
Posted by: Guest on May-22-2020
-2

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"
    });
Posted by: Guest on March-23-2020

Code answers related to "send form data with javascript fetch to a route"

Code answers related to "Javascript"

Browse Popular Code Answers by Language