vue前端跨域问题
在使用vue-cli时会遇到跨域问题解决方法如下:
1、在项目中config文件夹下的index.js文件里面有个module.exports对象,里面有个dev对象中有个proxyTable对象在里面新加一下代码
proxyTable: {
'/api':{
target:'https://mp.csdn.net',//后台的IP或域名
checkOrigin:true,
pathRewrite:{
'^api':''//在使用时直接用/api+接口就可以调用了
}
}
},
2、使用时
let url = '/api+接口';
let params = {};
$post.post(url,params).then(res=>{})
这样就成功的解决了vue前端跨域的问题