本文实例为大家分享了Vue+axios封装请求实现前后端分离的具体代码,供大家参考,具体内容如下
前言
我们需要进行前后端分离开发,那么前后端的跨域问题就是无可避免的问题,前后端的请求也是无可避免的,Vue之中有一个请求组件是axios,我们可以对axios进行封装作为我们请求的工具组件
# 一、封装axios
vue.config.js 配置文件
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
module.exports = { configureWebpack: { resolve: { alias: { api: '@/api' , assets: '@/assets' , components: '@/components' , layouts: '@/layouts' , router: '@/router' , store: '@/store' , utils: '@/utils' , views: '@/views' } } }, devServer: { //端口 port: 8081, //后端接口 proxy: { '/api' : { target: 'http://localhost:8099' , // 目标代理接口地址 changeOrigin: true , // 开启代理,在本地创建一个虚拟服务端 // ws: true, // 是否启用websockets pathRewrite: { '^/api' : '' } } } } } |
request.js,封装组件
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
//配置axios import axios from 'axios' const instance = axios.create({ baseURL: '/api' , timeout: 6000 }) instance.defaults.headers.post[ 'Content-Type' ] = 'application/x-www-form-urlencoded' //请求拦截器 instance.interceptors.request.use( function (config) { return config }, function (error) { //对请求错误做些什么 return Promise.reject(error) } ) //响应拦截器 instance.interceptors.response.use( function (response) { return response.data }, function (error) { //对响应错误做点什么 return Promise.reject(error) } ) export default function (method, url, data = '' , config = '' ) { method = method.toLowerCase() if (method === 'post' ) { if (config !== '' ) { return instance.post(url, data, config) } else { return instance.post(url, data) } } else if (method === 'get' ) { return instance.get(url, {params: data}) } else if (method === 'delete' ) { return instance. delete (url, {params: data}) } else if (method === 'put' ) { return instance.put(url, data) } else { console.error( '未知的method' + method) return false } } |
api.js,接口文件
1
2
3
4
5
6
7
|
import req from '@/utils/request' /** * 批量查询 * @param params */ export const list = params => req( "get" , "/resource/list" , params); |
具体的页面之中进行导入使用即可
总结
这就是vue中对于axios的初步封装使用,后续会持续更新
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。
原文链接:https://blog.csdn.net/zukxu123/article/details/109171855