Answers for "axios post data not sent"

12

axios send post data

// Send a POST request
axios({
  method: 'post',
  url: '/user/12345',
  data: {
    firstName: 'Fred',
    lastName: 'Flintstone'
  },
  headers: {'Authorization': 'Bearer ...'}
});
Posted by: Guest on April-13-2020
0

axios post not sending data php

$_POST = json_decode(file_get_contents("php://input"),true);
echo $_POST['data1'];
Posted by: Guest on April-04-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language