在config/index.js中进行如下配置

【即在进行ajax请求时,地址中任何以/api开头的请求地址都被解析为目标地址,target就是你想要的后台接口地址】

proxyTable: {
            '/chinacountry': {
                target: 'http://localhost/ChinaCountry',
                changeOrigin: true,
                pathRewrite: {
                    '^/chinacountry': ''
                }
            }
        },

axios调用示例

this.$http
      .get("/chinacountry/index.php/home/Index/test")
      .then(response => {
        this.menuList = response.data;
      })
      .catch(error => {
        console.log(error);
      });

 

相关文章:

  • 2022-12-23
  • 2021-10-14
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-11-22
  • 2022-02-25
  • 2021-06-17
  • 2021-05-17
  • 2021-11-22
  • 2021-11-22
相关资源
相似解决方案