[Vuejs]-FormData Object not receiving file

0👍

This is not a normal form, Make axios knows that content-type is multipart/form-data

axios.post(path, data, {
    headers: {
      'Content-Type': 'multipart/form-data'
    }
}).then((response) => {
   //
});

Leave a comment