axios二次封装

axios的使用以及二次封装

一:axios的使用

1.下载

javascript 复制代码
npm i axios -S

2.引入

javascript 复制代码
import axios from 'axios'

3.使用

axios.get()

axios.post()

axios({

url:'',

method:'',

data:'post传值方式'

}).then(res=>

console.log(res)//后端给前端返回的数据

)

二:vue中的二次封装

1.终端下载

javascript 复制代码
npm i axios -S

2.main.js中引入

javascript 复制代码
import axios from "axios";

3.封装axios实例--http.js

引入相关内容并创建axios实例

javascript 复制代码
// axios的二次封装
// 引入axios
import axios from 'axios'
// 引入token
import {useUserStore} from '@/stores/userStore'
// 引入路由
// import { useRouter } from 'vue-router';
import router from '@/router';
// 创建axios实例
const httpInstance = axios.create({
    // 设置基地址
    baseURL: 'http://pcapi-xiaotuxian-front-devtest.itheima.net',
    //  设置超时时间
    timeout: 20000
})

4.添加请求拦截器

config参数

config 对象是由 Axios 库在内部创建并传递给拦截器函数的。当你使用 Axios 发起一个 HTTP 请求时,Axios 会根据你提供的请求配置选项(如 URL、方法、头信息等)创建一个 config 对象。这个对象包含了请求的所有必要信息。

添加响应拦截器并导出

javascript 复制代码
// 拦截器
// 添加请求拦截器
httpInstance.interceptors.request.use(function (config) {
  const useStore=useUserStore()
    // 1.从pinia获取token数据
  const token=useStore.userInfo.token
    // 在发送请求之前做些什么
    //判断token是否存在
    if(token){
    //将token按照后端的要求拼接一下,并且加到请求头上面。
   config.headers.Authorization=`Bearer ${token}`
    }
    //将修改后的config返回出去
   return config;
  }, 
  //没有获取到token,返回错误
  function (error) {
    // 对请求错误做些什么
    return Promise.reject(error);
  });

5.添加响应1拦截器

javascript 复制代码
httpInstance.interceptors.response.use(function (response) {
    // 2xx 范围内的状态码都会触发该函数。
    // 拿到reponse之后可以对响应数据做一些操作
    return response;
  }, function (error) {
    // 超出 2xx 范围的状态码都会触发该函数。
    // 对响应错误做点什么
    // 利用拦截器做了一个统一的配置,为什么要写在拦截器里面,因为有很多共同的操作会报错
    ElMessage({
      message:error.response.data.msg,
      type: 'warning',
    })
    // 401token失效处理
    const userStore=useUserStore()
    // 2.跳转到登录页
    if(error.response.status===401){
    // 1.清除本地用户数据
      userStore.clearUserInfo()
    // 2.跳转到登录页
      router.push('/login')
    }
    // 返回错误提示
    return Promise.reject(error);
  }); 
// 导出
export default httpInstance

6.封装请求API

javascript 复制代码
// 获取详情接口,实例里面有请求拦截器,响应拦截器,超时时间,请求基地址。
import httpInstance from "@/utils/http";
export const getCheckoutInfoAPI = () => {
    return httpInstance({
      url:'/member/order/pre'
    })
  }
export const createOrderAPI=(data)=>{
return httpInstance({
  url:'/member/order',
  method:'POST',
  data
})
}

7.组件内使用

javascript 复制代码
//引入相关发送请求的API
import {getCategoryFilterAPI,getSubCategoryAPI} from '@/apis/category.js'
import { onMounted} from 'vue'
// 获取面包屑导航数据
//创建容器
const categoryData=ref([])
const getCategoryData=async ()=>{
//调用API并传入参数
 const res=await getCategoryFilterAPI(route.params.id)
 categoryData.value=res.data.result
}
onMounted(()=>{
  getCategoryData() 
})
相关推荐
m0_748230944 分钟前
Rust赋能前端: 纯血前端将 Table 导出 Excel
前端·rust·excel
qq_5895681011 分钟前
Echarts的高级使用,动画,交互api
前端·javascript·echarts
黑客老陈1 小时前
新手小白如何挖掘cnvd通用漏洞之存储xss漏洞(利用xss钓鱼)
运维·服务器·前端·网络·安全·web3·xss
正小安1 小时前
Vite系列课程 | 11. Vite 配置文件中 CSS 配置(Modules 模块化篇)
前端·vite
编程百晓君2 小时前
一文解释清楚OpenHarmony面向全场景的分布式操作系统
vue.js
暴富的Tdy2 小时前
【CryptoJS库AES加密】
前端·javascript·vue.js
neeef_se2 小时前
Vue中使用a标签下载静态资源文件(比如excel、pdf等),纯前端操作
前端·vue.js·excel
m0_748235612 小时前
web 渗透学习指南——初学者防入狱篇
前端
℘团子এ2 小时前
js和html中,将Excel文件渲染在页面上
javascript·html·excel