您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關如何實現(xiàn)axios發(fā)送post請求以及提交圖片類型表單數(shù)據(jù)方法的內(nèi)容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。
DOME
<input type="file" @change="upload" ref="upload">
接口
const userUploadAtt = (File,config) => axios.post("接口",File,config)
處理數(shù)據(jù)
let input = this.$refs.upload 創(chuàng)建一個空的FormData對象 let data = new FormData(); 使用FormData.append來添加鍵/值對到表單里面; data.append('file', input.files[0]); upload(){ userUploadAtt(data,{headers: {'Content-Type': 'multipart/form-data'}}).then((response)=>{ this.headPhoto = response.data[0].msg.url; }).catch(()=>{ }) }
注意:
如果
axios.defaults.headers.post['Content-Type'] = 'application/x-www-form-urlencoded;charset=UTF-8' post請求時候表單上傳不需要引入qs.stringify()
感謝各位的閱讀!關于“如何實現(xiàn)axios發(fā)送post請求以及提交圖片類型表單數(shù)據(jù)方法”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。