vue 跨域配置

proxyTable: {
      '/api/a': {
        target: 'https://api.apiopen.top/', // 接口的域名
        secure: false,  // 如果是https接口,需要配置这个参数
        changeOrigin: true, // 如果接口跨域,需要进行这个参数配置
        pathRewrite: {
          '^/api/a': '/' // '/api/a/user' =='localhost:8080/user'
        }
      }
    },

  

猜你喜欢

转载自www.cnblogs.com/zhouhongdan/p/12619094.html