vue-cli里面的proxyTable要怎么代理https?

vue-cli里面的proxyTable要怎么代理https?看的网络上面都是http的,不知道该如何设置。如果直接设置https://**,就会报错,报的是未定义的错误,求助!

阅读 12.1k
2 个回答
proxyTable: {
      // 代理所有的以 /api 开头的请求到 https://xxxx.com
      '/api': {
        target: 'https://xxxx.com',
        changeOrigin: true,
        secure: false,
        headers: {
          Referer: 'https://xxxx.com'
        }

      }
    }
我个人开发配置完全没问题 你试试。
// 没报错
proxyTable: {
  '/local': {
    target: 'https://www.****.com',
    changeOrigin: true,
    pathRewrite: {
      '^/local': ''
    }
  },
  '/php/': {
    target: 'https://****.****.com/api/',
    changeOrigin: true,
    pathRewrite: {
      '^/php': ''
    }
  }
}
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
1 篇内容引用
推荐问题
宣传栏