vue 的axios 文件上传

网友投稿 1027 2022-11-04

vue 的axios 文件上传

vue 的axios 文件上传

具体方法

Upload(file) { console.log(file.file);//获取文件对象 var formData = new FormData();//新建表单对象 formData.append("file",file.file);//把文件对象添加到表单对象里 formData.append("filename", file.file.name);//把文件名称添加到表单对象里 var that=this; // 此时可以自行将文件上传至服务器 that.$axios.post("/api/UploadFile",formData).then((res) => { console.log(res); if(res.code==10000 ) { debugger } else{ console.error(res.msg); } });}

文件对象的格式

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:GC算法实现垃圾优先算法
下一篇:Pandas列中的字典/列表拆分为单独的列
相关文章

 发表评论

暂时没有评论,来抢沙发吧~