vue跨域代理

在项目根目录创建vue.config.js文件

const webpack=require('webpack')
//设置基准地址,我随便写的一个地址
baseURL="http"//192.168.0.0.1:8080"
module.exports = {
    publicPath: '/abc',
    devServer:{
        port:8080,
        open: true,
        proxy: {
        '/api': {
                target:baseURL+'/hhh/',
                pathRewrite: {'^/api' : ''},
               secure: false, // https下设置为true
               changeOrigin: true,
                 },
             ........
        }
        }
        }
        
        请求到 /api/xxx 现在会被代理到请求 http://localhost:3000/xxx, 例如 /api/user 现在会被代理到请求 http://localhost:3000/user
默认情况下,不接受运行在 HTTPS 上,且使用了无效证书的后端服务器。如果你想要接受,只要设置 secure: false 就行。
上面的参数列表中有一个changeOrigin参数, 是一个布尔值, 设置为true, 本地就会虚拟一个服务器接收你的请求并代你发送该请求,
##配置多个规则:vue-cli中proxyTable配置接口
module.exports = {
  dev: {
  // 静态资源文件夹
  assetsSubDirectory: 'static',
  // 发布路径
  assetsPublicPath: '/',
 
  // 代理配置表,在这里可以配置特定的请求代理到对应的API接口
  // 使用方法:https://vuejs-templates.github.io/webpack/proxy.html
  proxyTable: {
    // 例如将'localhost:8080/api/xxx'代理到'https://wangyaxing.cn/api/xxx'
    '/api': {
      target: 'https://wangyaxing.cn', // 接口的域名
      secure: false, // 如果是https接口,需要配置这个参数
      changeOrigin: true, // 如果接口跨域,需要进行这个参数配置
    },
    // 例如将'localhost:8080/img/xxx'代理到'https://cdn.wangyaxing.cn/xxx'
    '/img': {
      target: 'https://cdn.wangyaxing.cn', // 接口的域名
      secure: false, // 如果是https接口,需要配置这个参数
      changeOrigin: true, // 如果接口跨域,需要进行这个参数配置
      pathRewrite: {'^/img': ''} // pathRewrite 来重写地址,将前缀 '/api' 转为 '/'。
    }
  },
  // Various Dev Server settings
  host: 'localhost', // can be overwritten by process.env.HOST
  port: 4200, // can be overwritten by process.env.PORT, if port is in use, a free one will be determined
}

dev-server 使用了非常强大的http-proxy-middleware , http-proxy-middleware 基于 http-proxy 实现的,可以查看 http-proxy 的源码和文档:https://github.com/nodejitsu/node-http-proxy。

target:要使用url模块解析的url字符串

forward:要使用url模块解析的url字符串

agent:要传递给http(s).request的对象(请参阅Node的https代理和http代理对象)

ssl:要传递给https.createServer()的对象

ws:true / false,是否代理websockets

xfwd:true / false,添加x-forward标头

secure:true / false,是否验证SSL Certs

toProxy:true / false,传递绝对URL作为路径(对代理代理很有用)

prependPath:true / false,默认值:true - 指定是否要将目标的路径添加到代理路径

ignorePath:true / false,默认值:false - 指定是否要忽略传入请求的代理路径(注意:如果需要,您必须附加/手动)。

localAddress:要为传出连接绑定的本地接口字符串

changeOrigin:true / false,默认值:false - 将主机标头的原点更改为目标URL

评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值