Answers for "how to send a file in axios post"

6

axios file upload

const formData = new FormData();
const imagefile = document.querySelector('#file');
formData.append("image", imagefile.files[0]);
axios.post('upload_file', formData, {
    headers: {
      'Content-Type': 'multipart/form-data'
    }
})
Posted by: Guest on May-15-2020
0

upload file axios

uploadFile: function (event) {
    const file = event.target.files[0]
    axios.post('upload_file', file, {
        headers: {
          'Content-Type': file.type
        }
    })
}
Posted by: Guest on March-03-2021
0

axios send file with data

const photoFormData = new FormData();
    // dict of all elements
    photoFormData.append("avatar", file);
    photoFormData.append("email", this.state.email);
    photoFormData.append("name", this.state.name);
Posted by: Guest on October-16-2021

Code answers related to "how to send a file in axios post"

Code answers related to "Javascript"

Browse Popular Code Answers by Language