Sending Data with POST Requests

To send data to a server, you can use a POST request. Here’s how you can send JSON data:

axios.post('https://jsonplaceholder.typicode.com/posts', {
  title: 'foo',
  body: 'bar',
  userId: 1
})
  .then(response => {
    console.log('Data:', response.data);
    console.log('Status:', response.status);
  })
  .catch(error => {
    console.error('Error:', error);
  });

Comments

Leave a Reply

Your email address will not be published. Required fields are marked *