vue综合中后台项目 代理服务器解决跨越问题

1.原理:绕过浏览器上的域名限制,通过代理服务器,进行连接

 

2

2.设置两个get请求

 

export default {
  name: "Home",
  components: {},
  methods: {
    async getApi() {
      let res = await axios.get("community/square?start=7&limit=10");
      console.log(res);
    },
    async getApi1() {
      let res = await axios.get(
        "rest/statistics/stat?value=[{%22app_name%22:%22Chrome%22,%22page%22:%22MIBBS_MyBoard%22,%22stayTimeInMs%22:0,%22itemDataList%22:[{%22itemName%22:%22MIBBS_MyBoard_exposure_page%22}]}]"
      );
      console.log(res);
    },
  },
  mounted() {
    //dgetApi();
    this.getApi();
    this.getApi1();
  },
};

 

3.在vue.config.js文件设置两个代理服务器

// module.exports = {
//   devServer: {
//     //设置开发服务器,将未知接口转发到哪一个服务器上
//     proxy: 'https://prod.api.xiaomi.cn/'
//   }
// }

module.exports = {
  devServer: {
    proxy: {
      '/community': {
        target: 'https://prod.api.xiaomi.cn/',
        changeOrigin: true
      },
      '/rest': {
        target: 'https://prod.api.xiaomi.cn/'
      }
    }
  }
}


结果:

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值