欢迎来到代码驿站!

vue

当前位置:首页 > 网页前端 > vue

axios的拦截请求与响应方法

时间:2020-12-16 10:16:12|栏目:vue|点击:

比如发送请求显示loading,请求回来loading消失之类的

import Vue from 'vue'
import App from './App.vue'
import axios from 'axios'
import Loading from './components/Loading'
import stores from './store/store.js'
axios不能use哦


// 请求拦截(配置发送请求的信息)
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);
 });
Vue.prototype.$http = axios //其他页面在使用axios的时候直接 this.$http就可以了

上一篇:vue路由嵌套的SPA实现步骤

栏    目:vue

下一篇:vue动态禁用控件绑定disable的例子

本文标题:axios的拦截请求与响应方法

本文地址:http://www.codeinn.net/misctech/33459.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有