Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

add formdata to axios request in js

var bodyFormData = new FormData();

bodyFormData.append('userName', 'Fred');
bodyFormData.append('image', imageFile); 

axios({
  method: "post",
  url: "myurl",
  data: bodyFormData,
  headers: { "Content-Type": "multipart/form-data" },
})
  .then(function (response) {
    //handle success
    console.log(response);
  })
  .catch(function (response) {
    //handle error
    console.log(response);
  });
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #add #formdata #axios #request #js
ADD COMMENT
Topic
Name
3+4 =