vue Error occured while trying to proxy to: localhost:9530 &&后台接口https协议的

代理配置需在其他的基础上加 
changeOrigin 和 pathRewrite
  proxyTable: {
      '/admin': {
        target: 'https://dev.xxxxx.com/',
        changeOrigin:true,
        pathRewrite:{
          '^/admin':''
        }
      }
    },

http协议的可不加

changeOrigin:true
pathRewrite:{
          '^/admin':''
        }
 
posted @ 2022-08-10 16:48  shuihanxiao  阅读(379)  评论(0)    收藏  举报