vue-cli开发时,ajax跨域详细解决办法


在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);
      });

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM