vue 使用代理(proxyTable)报错500

在做项目时原本正常的接口突然疯狂报错,经过询问后端把http换成了https,然后我在代理里配置了https跑起来后还是会报错,后面突然想起了secure:false不验证证书这个选项,添加后重启项目就可以正常访问了。

// index.js
...
proxyTable: {
      '/attendance': {
        target: 'https://xxxxxx',  // 测试环境
        secure:false, // https必须添加 不验证证书
        changeOrigin: true,
        pathRewrite: {
            '^/attendance': '/attendance'
        }
      }
    }
...
Logo

前往低代码交流专区

更多推荐