這篇文章主要介紹了Vue怎么設(shè)置axios請求格式為form-data的相關(guān)知識,內(nèi)容詳細易懂,操作簡單快捷,具有一定借鑒價值,相信大家閱讀完這篇Vue怎么設(shè)置axios請求格式為form-data文章都會有所收獲,下面我們一起來看看吧。
“專業(yè)、務(wù)實、高效、創(chuàng)新、把客戶的事當(dāng)成自己的事”是我們每一個人一直以來堅持追求的企業(yè)文化。 創(chuàng)新互聯(lián)是您可以信賴的網(wǎng)站建設(shè)服務(wù)商、專業(yè)的互聯(lián)網(wǎng)服務(wù)提供商! 專注于成都網(wǎng)站設(shè)計、成都做網(wǎng)站、軟件開發(fā)、設(shè)計服務(wù)業(yè)務(wù)。我們始終堅持以客戶需求為導(dǎo)向,結(jié)合用戶體驗與視覺傳達,提供有針對性的項目解決方案,提供專業(yè)性的建議,創(chuàng)新互聯(lián)建站將不斷地超越自我,追逐市場,引領(lǐng)市場!
Cover
在Vue中使用axios
!!! 設(shè)置form-data請求格式直接翻到后面看。
1. 安裝axios
在項目下執(zhí)行npm install axios。
之后在main.js中,添加:
import axios from 'axios' //引入 //Vue.use(axios) axios不能用use 只能修改原型鏈 Vue.prototype.$axios = axios
2. 發(fā)送GET請求
axios封裝了get方法,傳入請求地址和請求參數(shù),就可以了,同樣支持Promise。
//不帶參數(shù)的get請求 let url = "..." this.$axios.get(url) .then((res) => { console.log(res) //返回的數(shù)據(jù) }) .catch((err) => { console.log(err) //錯誤信息 })
不過它的參數(shù)需要寫在params屬性下,也就是:
//帶參數(shù)的get請求 let url = "...getById" this.$axios.get(url, { params: { id: 1 } }) .then((res) => { console.log(res) //返回的數(shù)據(jù) }) .catch((err) => { console.log(err) //錯誤信息 })
2. 發(fā)送post請求
與上面相同,就是參數(shù)不需要寫在params屬性下了,即:
//帶參數(shù)的post請求 let url = "...getById" let data = { id: 1 } this.$axios.post(url, data) .then((res) => { console.log(res) //返回的數(shù)據(jù) }) .catch((err) => { console.log(err) //錯誤信息 })
3. 經(jīng)典寫法
axios也可以用jQ的寫法,不過回調(diào)函數(shù)還是Promise的寫法,如:
this.$axios({ method: 'post', url: '...', data: { firstName: 'Fred', lastName: 'Flintstone' } }).then((res) => { console.log(res) })
設(shè)置form-data請求格式
我用默認的post方法發(fā)送數(shù)據(jù)的時候發(fā)現(xiàn)后端獲取不到數(shù)據(jù),然而在network中看到參數(shù)是的確傳出去的了。而且用postman測試的時候也是可以的,比較了下兩個的不同發(fā)現(xiàn)是postman使用的是form-data格式,于是用form-data格式再次請求,發(fā)現(xiàn)OJBK
在查找設(shè)置請求格式的時候花了點時間,網(wǎng)上的方案有好幾個,這個我親測成功,發(fā)上來。
import axios from "axios" //引入 //設(shè)置axios為form-data axios.defaults.headers.post['Content-Type'] = 'application/x-www-form-urlencoded'; axios.defaults.headers.get['Content-Type'] = 'application/x-www-form-urlencoded'; axios.defaults.transformRequest = [function (data) { let ret = '' for (let it in data) { ret += encodeURIComponent(it) + '=' + encodeURIComponent(data[it]) + '&' } return ret }] //然后再修改原型鏈 Vue.prototype.$axios = axios
關(guān)于“Vue怎么設(shè)置axios請求格式為form-data”這篇文章的內(nèi)容就介紹到這里,感謝各位的閱讀!相信大家對“Vue怎么設(shè)置axios請求格式為form-data”知識都有一定的了解,大家如果還想學(xué)習(xí)更多知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。