下面我就為大家分享一篇Axios 常用的請求方法別名,具有很好的參考價值,希望對大家有幫助。
Axios
是一個基於 promise 的 HTTP 函式庫,可以用在瀏覽器和 node.js 中。
常用的請求方法別名一般有: Get/post/http協定請求
執行Get請求
function get(){ return axios.get('/data.json', { params:{ id:1234 } }).then(function (response) { console.log(response); }) .catch(function (error) { console.log(error); }); }
使用get方法進行傳參數的時候用的是params方法
執行Post請求
function post(){ return axios.post('/data.json', { id:1234 }) .then(function (response) { console.log(response); }) .catch(function (error) { console.log(error); }); }##使用post方法進行傳遞參數的時候是直接進行資料的傳遞,這也是兩種方法的區別。
執行http協定要求
function http(){ return axios({ method: 'post', url: '/data.json', data: { id: 1111, }, params: { id:2222, }).then(res=>{ this.msg=res.data; }); }注意這裡的區別,當使用post請求的時候,進行資料的傳參使用的是data方法,而使用get請求的時候,使用的是params方法。
使用攔截器:
在請求或回應被 then 或 catch 處理前攔截它們。// 添加请求拦截器 mounted:function(){ axios.interceptors.request.use(function (config) { // 在发送请求之前做些什么 return config; }, function (error) { // 对请求错误做些什么 return Promise.reject(error); }); // 添加响应拦截器 axios.interceptors.response.use(function (response) { // 对响应数据做点什么 return response; }, function (error) { // 对响应错误做点什么 return Promise.reject(error); }); }上面是我整理給大家的,希望今後對大家有幫助。 相關文章:
使用Angular CLI產生Angular 5專案教學詳解
以上是基於Axios 常用的請求方法別名(詳解)的詳細內容。更多資訊請關注PHP中文網其他相關文章!