vue3 +ts 如何安装封装axios
Posted 奶糖 肥晨
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue3 +ts 如何安装封装axios相关的知识,希望对你有一定的参考价值。
文章目录
以vite创建的项目,
vue3使用axios。
使用ts二次封装axios
访问接口,并调用接口。
vue3
安装封装axios
,其实和vue2的大差不差。只是在ts和js上,有些区别。
为什么封装axios
- 求头能统一处理
- 便于接口的统一管理
- 解决回调地狱
- 配置拦截器,给不同的实例配置不同的拦截器,支持以对象形式接受多个拦截器配置
安装axios
npm install axios
引入插件
在使用的文件中引入
import axios from "axios";
封装request
先在 src 下创建一个 utils文件夹,并添加一个 request.ts 文件
import axios, AxiosInstance, AxiosRequestConfig from 'axios'
class HttpRequest
private readonly baseUrl: string;
constructor()
this.baseUrl = 'http://localhost:8080'
getInsideConfig()
const config =
baseURL: this.baseUrl,// 所有的请求地址前缀部分(没有后端请求不用写)
timeout: 80000, // 请求超时时间(毫秒)
withCredentials: true,// 异步请求携带cookie
// headers:
// 设置后端需要的传参类型
// 'Content-Type': 'application/json',
// 'token': x-auth-token',//一开始就要token
// 'X-Requested-With': 'XMLHttpRequest',
// ,
return config
// 请求拦截
interceptors(instance: AxiosInstance, url: string | number | undefined)
instance.interceptors.request.use(config =>
// 添加全局的loading..
// 请求头携带token
return config
, (error: any) =>
return Promise.reject(error)
)
//响应拦截
instance.interceptors.response.use(res =>
//返回数据
const data = res
console.log('返回数据处理', res)
return data
, (error: any) =>
console.log('error==>', error)
return Promise.reject(error)
)
request(options: AxiosRequestConfig)
const instance = axios.create()
options = Object.assign(this.getInsideConfig(), options)
this.interceptors(instance, options.url)
return instance(options)
const http = new HttpRequest()
export default http
封装接口
在api的文件夹中,新建一个api的ts文件。
注意:因为get请求的参数需要
params
,它是即将与请求一起发送的 URL 参数,为了简写采用了ES6的解构,就是把下面的params
解构,只有get 请求需要加多一层params
。
其它请求,如 post 等请求等就不用解构,形参是什么都行。
案例
src文件夹下新建api文件夹,新建api.ts文件,里面写你请求后台的接口,比如我这里的请求地址是/test, 加上axios的baseURL,完整的请求路径就是http://localhost:8080/test
import http from '../utils/request'
//get有值
export function getTest(params: any)
return http.request(
url: '/test',
method: 'get',
params
)
//get无值
export function (params: any)
return http.request(
url: '/test',
method: 'get',
params
)
使用
请求的组件上使用
import ref, onMounted from "vue";
import getFileList from "../../api/index";
export default
setup()
onMounted(() =>
getTest().then((res: any) =>
console.log(res);
);
);
,
;
vue中Echarts封装
参考技术A 封装echars组件:首先安装echarts npm echarts --save
然后新建一个echarts文件夹,新建index.vue文件:
```
<template>
<div class="echartStyle" ref="echarts"></div>
</template>
<script lang="ts">
let Echarts = require('echarts/lib/echarts')
// 按需引入需要的组件模块
require('echarts/lib/chart/line')
require('echarts/lib/chart/scatter')
require('echarts/lib/component/title')
require('echarts/lib/component/legend')
require('echarts/lib/component/tooltip')
require('echarts/lib/component/toolbox')
require('echarts/lib/component/dataZoom')
import defineComponent from 'vue'
export default defineComponent(
name: 'vue-echarts',
props:
option: //配置项
type: Object,
required: true
,
data: //数据
type: Array,
required: true
,
series:
required:true
,
achiveOilDataSuccess: //判断数据是否获取成功
type: Boolean,
required: true
,
,
mounted()
let data = this.$props.data
this.initOption(data)
,
updated()
let data = this.$props.data
this.initOption(data)
,
methods:
//初始化图表配置
initOption(data: any)
let vm = Echarts.init(this.$refs.echarts)
if (this.$props.achiveOilDataSuccess === false)
vm.showLoading(
text: 'loading',
color: '#c23531',
textColor: '#000',
maskColor: 'rgba(255, 255, 255, 0.2)',
zlevel: 0
)//设置加载动画
else
vm.hideLoading()
if(this.$props.series)
this.$props.option.series=this.$props.series
let legendNumber=this.$props.option.series.length;
if(legendNumber===1)
this.$props.option.series[0].data = data
else
for(let i=0;i<legendNumber;i++)
this.$props.option.series[i].data=data[i];
vm.setOption(this.$props.option)
)
</script>
<style lang="scss" scoped>
.echartStyle
width: 100%;
height: 5rem;
margin: 0 auto;
</style>
```
然后在父组件里引用
<echarts
:option="option"
:data="thresholdAccInfoListHBase"
:achiveOilDataSuccess="achiveOilDataSuccess"
><echarts>
以上是关于vue3 +ts 如何安装封装axios的主要内容,如果未能解决你的问题,请参考以下文章
vue3.x结合element-plus如何使用icon图标