Answers for "axios file upload by query params"

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

pass query string in axios instance

pass it as params in axios instance

const axiosInstance = axios.create({

  baseURL: baseURL,
  timeout: 5000,
  params: {
    api_key : "xyz"
  },


  
});
Posted by: Guest on September-28-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language