这篇文章给大家介绍如何在vue项目中使用封装后的axios,内容非常详细,感兴趣的小伙伴们可以参考借鉴,希望对大家能有所帮助。
为什么要使用Vue
Vue是一款友好的、多用途且高性能的JavaScript框架,使用vue可以创建可维护性和可测试性更强的代码库,Vue允许可以将一个网页分割成可复用的组件,每个组件都包含属于自己的HTML、CSS、JavaScript,以用来渲染网页中相应的地方,所以越来越多的前端开发者使用vue。
方法如下
vue安装axios
npm install axios -S或者npm i axios -S
在main.js进行全局引入
import axios from 'axios'Vue.prototype.$axios = axios //将axios绑定到vue的原型上
配置跨域 在根目录下vue.config.js里边
module.exports = { publicPath: './', //配置跨域请求 devServer: { open: true, //是否自动打开浏览器 https: false, //是否开启https hotOnly: false, proxy: { // 配置跨域 '/api': { target: 'http://********', //请求接口域名 ws: true, secure: false, changOrigin: true, //是否允许跨越 pathRewrite: { '^/api': '' } } }, before: app => { } }}
在src子目录下的api文件夹下创建api.js文件进行简单的封装axios
import axios from 'axios'//这里引用了element的loading全屏加载import { Loading } from "element-ui";const service = axios.create({ baseURL: '/', timeout: 30000 // 设置请求超时时间})let loading = "";// 请求拦截器service.interceptors.request.use( (config) => { // 在请求发送之前做一些处理 if (!(config.headers['Content-Type'])) { loading = Loading.service({ lock: true, text: "加载中...", spinner: "el-icon-loading", background: "rgba(255,255,255,0.7)", customClass: "request-loading", }); if (config.method == 'post') { config.headers['Content-Type'] = 'application/json;charset=UTF-8' for (var key in config.data) { if (config.data[key] === '') { delete config.data[key] } } config.data = JSON.stringify(config.data) } else { config.headers['Content-Type'] = 'application/x-www-form-urlencoded;charset=UTF-8' config.data = JSON.stringify(config.data) } } const token = "token" // 让每个请求携带token-- ['X-Token']为自定义key 请根据实际情况自行修改 if (token) { config.headers['Authorization'] = token } return config }, (error) => { loading.close(); // 发送失败 console.log(error) return Promise.reject(error) })// 响应拦截器service.interceptors.response.use( (response) => { loading.close(); // dataAxios 是 axios 返回数据中的 data // loadingInstance.close(); const dataAxios = response.data // 这个状态码是和后端约定的 return dataAxios }, (error) => { return Promise.reject(error) })export default service
在api文件夹下创建http文件
// 引入封装好的axios // ps:如果没有封装,正常引入axios即可 import axios from "./api";// /api为配置跨域的路径变量 let reportUpload= '/api/report/upload' export const Upload= () => { return axios.get( reportUpload ) }
在页面中调用接口
// 引入封装好的接口 import { Upload} from "@/api/http.js"; // 调用时使用 async Upload() { let { result } = await getlist (); console.log(result) },
关于如何在vue项目中使用封装后的axios就分享到这里了,希望以上内容可以对大家有一定的帮助,可以学到更多知识。如果觉得文章不错,可以把它分享出去让更多的人看到。