這次帶給大家vue axios表單中上傳圖片步驟詳解,vue axios表單中上傳圖片的注意事項有哪些,以下就是實戰案例,一起來看一下。
然後問題就是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); })
相信看了本文案例你已經掌握了方法,更多精彩請關注php中文網其它相關文章!
推薦閱讀:
以上是vue+axios表單上傳圖片步驟詳解的詳細內容。更多資訊請關注PHP中文網其他相關文章!