官方文档中指明,跨域请求可以通过配置vue.config.js
中的devServer.proxy
选项来进行配置。
这个选项配置的本质实际上就是http-proxy-middleware
中间件的用法,和Webpack-dev-server
的proxy一样。
vue-cli 3.0中介绍了两种常见的用法:
module.exports = {devServer: {proxy: 'http://localhost:4000'}
}
这种用法是将任何未知请求 (没有匹配到静态文件的请求) 代理到http://localhost:4000
如果想单独配置,可以使用path: options
成对的对象进行配置
module.exports = {devServer: {proxy: {'/api': {target: 'http://localhost:4000',ws: true,changeOrigin: true},'/foo': {target: 'http://localhost:8000'}}}
}
上述配置指明:
将请求到/api/xxx
代理到http://localhost:4000/api/xxx
,
将请求到/foo/xxx
代理到http://localhost:8000/foo/xxx
其他详细配置可以百度http-proxy-middleware
配置