vue 项目中使用原生 input type="file" 上传图片


vue 项目中使用 原生 input  type=“file” 上传图片

//html 代码
<input type="file" @change="uploadImg" accept="image/*" />
//js 代码
uploadImg:function(e){

let that = this;
let file = e.target.files[0];
let formData = new FormData();//创建 formdata对象
formData.append('file',file);
this.$axios.post(
url,
formdata,
{headers:{ 'Content-Type':'multipart/form-data' }})
.then(res=>{
console.log(res,'upolad img')
}).catch(err=>{})
}

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM