這篇文章將為大家詳細(xì)講解有關(guān)Axios常用的請求方法別名有哪些,小編覺得挺實(shí)用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
創(chuàng)新互聯(lián)公司是一家專業(yè)提供海陵企業(yè)網(wǎng)站建設(shè),專注與成都做網(wǎng)站、網(wǎng)站建設(shè)、H5響應(yīng)式網(wǎng)站、小程序制作等業(yè)務(wù)。10年已為海陵眾多企業(yè)、政府機(jī)構(gòu)等服務(wù)。創(chuàng)新互聯(lián)專業(yè)網(wǎng)絡(luò)公司優(yōu)惠進(jìn)行中。
Axios
是一個基于 promise 的 HTTP 庫,可以用在瀏覽器和 node.js 中。
常用的請求方法別名一般有: Get/post/http協(xié)議請求
執(zhí)行Get請求
function get(){ return axios.get('/data.json', { params:{ id:1234 } }).then(function (response) { console.log(response); }) .catch(function (error) { console.log(error); }); }
使用get方法進(jìn)行傳參數(shù)的時候用的是 params方法
執(zhí)行Post請求
function post(){ return axios.post('/data.json', { id:1234 }) .then(function (response) { console.log(response); }) .catch(function (error) { console.log(error); }); }
使用post方法進(jìn)行傳參數(shù)的時候是直接進(jìn)行數(shù)據(jù)的傳遞,這也是兩種方法的區(qū)別。
執(zhí)行http協(xié)議請求
function http(){ return axios({ method: 'post', url: '/data.json', data: { id: 1111, }, params: { id:2222, }).then(res=>{ this.msg=res.data; }); }
注意這里的區(qū)別,當(dāng)使用post請求的時候,進(jìn)行數(shù)據(jù)的傳參使用的是data方法,而使用get請求的時候,使用的是params方法。
使用攔截器:
在請求或響應(yīng)被 then 或 catch 處理前攔截它們。
// 添加請求攔截器 mounted:function(){ axios.interceptors.request.use(function (config) { // 在發(fā)送請求之前做些什么 return config; }, function (error) { // 對請求錯誤做些什么 return Promise.reject(error); }); // 添加響應(yīng)攔截器 axios.interceptors.response.use(function (response) { // 對響應(yīng)數(shù)據(jù)做點(diǎn)什么 return response; }, function (error) { // 對響應(yīng)錯誤做點(diǎn)什么 return Promise.reject(error); }); }
關(guān)于“Axios常用的請求方法別名有哪些”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,使各位可以學(xué)到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。