vue proxyTable 接口跨域请求调试

vue proxyTable 接口跨域请求调试

在 config/index.js 文件下修改
修改 dev 变量

const proxyTable = {
  target: 'https://baidu.com', // 线上映射地址地址
  changeOrigin: true,
  headers: {
    Cookie:'自己的 cookie 登录信息'
  }
}
 proxyTable: {
    '/根路径': proxyTable,
     '/根路径': proxyTable,
 },

更多详细知识介绍请访问我的个人主页

你可能感兴趣的:(vue proxyTable 接口跨域请求调试)