vue axios 表单提交上传图片的实例
时间:2020-12-15 01:30:46|栏目:vue|点击: 次
项目中用的element 的框架,然后在项目有一个添加数据需求是图片可上传,也可不上传,
然后问题就是element 中的上传控件在没有图片的时候是不会触发提交的,但接口写的是有file的 multipart/form-data 接收模式
所有只能自己另个模仿一个表单上传
<input class="file" name="file" type="file" accept="image/png,image/gif,image/jpeg" @change="update"/>
let file = e.target.files[0]; let param = new FormData(); //创建form对象 param.append('file',file,file.name);//通过append向form对象添加数据 param.append('chunk','0');//添加form表单中其他数据 let config = { headers:{'Content-Type':'multipart/form-data'} }; //添加请求头 this.axios.post('http://upload.qiniu.com/',param,config) .then(response=>{ console.log(response.data); })
上一篇:vue-cli 使用axios的操作方法及整合axios的多种方法
栏 目:vue
下一篇:vue-image-crop基于Vue的移动端图片裁剪组件示例
本文地址:http://www.codeinn.net/misctech/33020.html