美文网首页
使用axios上传文件

使用axios上传文件

作者: Eternal丶星空 | 来源:发表于2019-07-07 05:13 被阅读0次
export const uploadFile = file => {
  const param = new FormData();
  param.append("file", file.file);

  const config = {
    headers: { "Content-Type": "multipart/form-data" }
  };
  axios.post("/upload", param, config).then(res => {
    console.log(res);
  });
};

相关文章

网友评论

      本文标题:使用axios上传文件

      本文链接:https://www.haomeiwen.com/subject/qkbvhctx.html