You can post axios data by using FormData() like:
***
var bodyFormData = new FormData();
***
And then add the fields to the form you want to send:
***
bodyFormData.append('userName', 'Fred');
***
If you are uploading images, you may want to use .append
***
bodyFormData.append('image', imageFile);
***
And then you can use axios post method (You can amend it accordingly)
***
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);
});
***