Last active
May 12, 2018 07:18
-
-
Save fakiolinho/a6f867e00ed2c9bb39cf701f6eb86606 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import request from 'utils/request'; | |
export const uploadFileRequest = ({ file }) => { | |
const data = new FormData(); | |
data.append('file', file, file.name); | |
return request.post(`/files`, data, { | |
headers: { | |
'Content-Type': `multipart/form-data; boundary=${data._boundary}`, | |
}, | |
timeout: 30000, | |
}); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment