1.安装引入 axios
bash
npm i axios
2.配置代理
1.配置代理(方式一)
html
module.exports = {
devServer: {
proxy: 'http://localhost:5000'
}
}
1.发送ajax请求
javascript
getStudent(){
axios.get('http://localhost:8080/students').then(
res=>{
console.log('请求成功了',res.data);
},
error=>{
console.log('请求失败了',error);
}
)
}
说明一下, 当前服务器 有资源 就不会走代理服务器了,直接返回当前资源 而且只能代理一个服务器.