Vue2.0进阶 - 12. 配置代理

Vue2.0进阶学习

配置代理

  1. yarn add axios 安装axios库
  2. 在vue.config.js中添加代理配置 devServer:{ 配置内容 }
  3. 简单配置 proxy: ‘http://localhost:8899
  4. 复杂配置,可配置多个代理
1
2
3
4
5
6
7
8
proxy: {
'/odinapi': {
target: 'http://localhost:8899', //目标请求服务器
pathRewrite: { '^/odinapi': '' }, //路径重写匹配服务器路径
ws: true, //是否支持websocket
changeOrigin: true //用户控制请求头中的host true服务器获取到的请求头是服务器的请求ip localhost:8899,false是前端请求ip localhost:8080
}
}
  1. 在需要请求的地方发起axios请求获取数据
vue.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
const { defineConfig } = require('@vue/cli-service');
module.exports = defineConfig({
transpileDependencies: true,
//关闭语法检查
lintOnSave: false,
//简单配置代理服务器 不能添加多个代理服务器
// devServer: {
// proxy: 'http://localhost:5000'
// }
devServer: {
proxy: {
'/odinapi': {
target: 'http://localhost:8899', //目标请求服务器
pathRewrite: { '^/odinapi': '' }, //路径重写匹配服务器路径
ws: true, //是否支持websocket
changeOrigin: true //用户控制请求头中的host
}
}
}
});
app.vue
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<template>
<div class="dvapp">
<!--
vue配置代理
1. yarn add axios 安装axios库
2. 在vue.config.js中添加代理配置 devServer:{ 配置内容 }
3. 简单配置 proxy: 'http://localhost:8899'
4. 复杂配置,可配置多个代理
proxy: {
'/odinapi': {
target: 'http://localhost:8899', //目标请求服务器
pathRewrite: { '^/odinapi': '' }, //路径重写匹配服务器路径
ws: true, //是否支持websocket
changeOrigin: true //用户控制请求头中的host true服务器获取到的请求头是服务器的请求ip localhost:8899,false是前端请求ip localhost:8080
}
}
5. 在需要请求的地方发起axios请求获取数据
-->
<h2>app组件</h2><br/>
<button @click="getStus">获取学生信息</button><br/>
<ul>
<li v-for="stu in stus" :key="stu.id">
<Student stuName="stu.stuName"></Student>
</li>
</ul>

</div>
</template>

<script>
import Student from './components/Student.vue';
import axios from 'axios';
export default {
name: 'App',
data() {
return {
stus:[]
}
},
components: {
Student
},
methods: {
getStus() {
axios.get('http://localhost:8080/odinapi/student').then(
response => {
console.log('success', response.data);
this.stus = response.data;
},
error => {
console.log('error',error.message);

}
)
}
},
mounted() {

},
}
</script>

<style>
#app {
font-family: Avenir, Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: center;
color: #2c3e50;
margin-top: 60px;
}
.dvapp
{
background-color: aquamarine;
}
</style>

Vue2.0 基础学习目录

完整代码可以在 GitHub