Gitiles
Code Review
Sign In
gerrit.lilingkun.com
/
echo-frontend
/
736bde8c3bbd5fb9f2c866d45f1d6c7ff0de0afe
/
.
/
src
/
api
/
file.js
blob: fdfe571ea84fb11afd3df941f8f588ce8aacc5f9 [
file
] [
log
] [
blame
]
import
axios from
"axios"
;
export
const
uploadFile
=
async
(
file
)
=>
{
const
formData
=
new
FormData
();
formData
.
append
(
'file'
,
file
);
return
axios
.
post
(
'/file'
,
formData
,
{
headers
:
{
'Content-Type'
:
'multipart/form-data'
}
});
}