axios官網地址:https://github.com/axios/axiosios
post提交到後臺須要作相對應的處理git
使用URLSearchParams可讓post 數據提交到後臺github
對應gitHub上的內容以下:axios
In a browser, you can use the URLSearchParams API as follows: const params = new URLSearchParams(); params.append('param1', 'value1'); params.append('param2', 'value2'); axios.post('/foo', params); post提交之頭像上傳: 首先先閱讀gitHub上axios關於頭像上傳的介紹 查看文件examples裏面的upload 裏面相對應有處理介紹 首先這有一個demo是簡單的圖片上傳 <img :src="headImg" alt=""> <input type="file" id = "head" @change="uploadImg()"> // 圖片上傳 uploadImg(){ // console.log(document.getElementById('head').files[0]) 點取消輸出undefined if(document.getElementById('head').files[0]){ var data = new FormData(); data.append('headfile', document.getElementById('head').files[0]); axios.post("輸入上傳接口地址",data).then(rest=>{ console.log(rest); if(rest.data.code===200){ this.headImg = rest.data.data.msbox; } }) } }