react-native-file-picker icon indicating copy to clipboard operation
react-native-file-picker copied to clipboard

how can i upload pdf or word file to server

Open webpipl opened this issue 5 years ago • 1 comments

how can i upload pdf or word file to server image iam getting this reponse but iam getting confused how can i use this with axios pls tell me

React Native 0.59

webpipl avatar Jul 27 '19 18:07 webpipl

add "name" variable will do

let fm = new FormData();
response.name = response.fileName;
fm.append('files', response)
axios({
   method: 'post',
   url: targetURL,
   data: fm,
    config: { headers: {'Content-Type': 'multipart/form-data' }}
 }).then(resp=>{
  doSomething(resp)
})

muhsyafiq avatar Aug 10 '19 19:08 muhsyafiq