美文网首页
vue 跨域 vue-cli搭建项目

vue 跨域 vue-cli搭建项目

作者: shaguamayi | 来源:发表于2019-01-11 17:02 被阅读0次
image.png
proxyTable: {
            '/backend': { 
                target: 'http://test.com', //源地址 
                changeOrigin: true, //改变源 
                pathRewrite: {
                    '^/backend': '/backend' //路径重写 
                }
            }
        },
//可以在main.js里加上axios.defaults.baseURL = '/backend';请求就可以不写backend了
this.axios.get('/queryPage?isGuiShang=1&offset=0&limit=10')
                .then(function(response) {
                    console.log(response);//可收到数据
                })

做完这些一定要重启,重启,重启,不然不管用,我就因为没有重启浪费很多时间

相关文章

网友评论

      本文标题:vue 跨域 vue-cli搭建项目

      本文链接:https://www.haomeiwen.com/subject/hpgxdqtx.html