包括CDN头文件时如何在axios中编辑proxyTable

时间:2018-10-24 02:45:19

标签: javascript html vue.js axios

我的代码是由Vue.js和axios编写的,它们包含在CDN中每个html文件的head元素中。但是我遇到了跨源请求问题。所以我想修改proxyTable配置以便将属性changeOrigin设置为true。但是我不知道在哪里添加,因为我的项目中根本没有“ config / index.js”。我的参考:https://blog.csdn.net/yuanlaijike/article/details/80522621

我的主要代码的一部分:

axios.defaults.baseURL = 'http://192.168.0.129:8060/lovecoffee';

Vue.prototype.authorize = function (){
    axios.get('/wechat/authorize',{
        params:{}
    }).then(function(res){ 
        console.log(res.data);           
        return (res.data);
    }).catch(function(err){
        alert('身份认证失败: '+err.message);
    })
}

在我编写的html文件中的vue即时中:

var result = this.authorize();

0 个答案:

没有答案