Vue cli4.0 代理配置
Posted winyh
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Vue cli4.0 代理配置相关的知识,希望对你有一定的参考价值。
proxy: { ‘/service‘: { target: ‘http://192.168.40.243:3000/‘, //对应自己的接口 changeOrigin: true, ws: true, }, // ‘/page‘:{ // target: ‘http://192.168.0.167:9810‘, // changeOrigin: true, // ws:true // }, // ‘/table‘:{ // target: ‘http://192.168.0.167:9810/‘, // changeOrigin: true, // ws:true // }, ‘/api‘:{ target: ‘http://192.168.0.167:9810‘, changeOrigin: true, pathRewrite: {
‘^/api‘:‘/api‘, // 这种接口配置出来实际请求接口 http://192.168.0.167:9810/api/login,
‘^/api‘: ‘/‘ } },// 这种接口配置出来实际请求接口 http://192.168.0.167:9810/login, (后端大爷接口没有同意前缀时可以这样处理,前端请求的时候自己加api 前缀,避免每一个不同的前缀要重写一遍)
}
以上是关于Vue cli4.0 代理配置的主要内容,如果未能解决你的问题,请参考以下文章