溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Axios常用的請求方法別名有哪些

發(fā)布時間:2021-08-17 13:44:58 來源:億速云 閱讀:104 作者:小新 欄目:web開發(fā)

這篇文章將為大家詳細講解有關Axios常用的請求方法別名有哪些,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

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方法進行傳參數(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方法進行傳參數(shù)的時候是直接進行數(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ū)別,當使用post請求的時候,進行數(shù)據(jù)的傳參使用的是data方法,而使用get請求的時候,使用的是params方法。

使用攔截器:

在請求或響應被 then 或 catch 處理前攔截它們。

// 添加請求攔截器
mounted:function(){
  axios.interceptors.request.use(function (config) {
    // 在發(fā)送請求之前做些什么
    return config;
   }, function (error) {
    // 對請求錯誤做些什么
    return Promise.reject(error);
   });
// 添加響應攔截器
  axios.interceptors.response.use(function (response) {
    // 對響應數(shù)據(jù)做點什么
    return response;
   }, function (error) {
    // 對響應錯誤做點什么
    return Promise.reject(error);
   });
}

關于“Axios常用的請求方法別名有哪些”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內(nèi)容。

AI