vue2.0跨域的分享

1、在main.js里面,Vue.prototype.$axios = axios之后加入下面两段代码
axios.defaults.baseURL = '/api';

axios.defaults.headers.post['Content-Type'] = 'application/json';

image.png

2、在index.js中proxyTable里面增加
target里面增加要跨域的url

'/api':{

    target: "http://local.laravel8.cn",

    changeOrigin:true,

    pathRewrite:{

        '^/api':''

    }

vue2.0跨域的分享_第1张图片

3、在实际使用的时候,直接写上要请求的url即可:
image.png

你可能感兴趣的:(vue.js跨域)