vue项目设置服务器代理(实现跨域)
设置服务器代理在config文件中的index.js中的proxyTableproxyTable: {//设置服务器代理"/taokubuy": {"target":"http://198.33.33.33:8000,"changeOrigin":true,"pathRewrite": {"^/ap
·
设置服务器代理
在config文件中的index.js中的proxyTable
proxyTable: {//设置服务器代理
"/taokubuy": {
"target":"http://198.33.33.33:8000,
"changeOrigin":true,
"pathRewrite": {
"^/api":""//api相当于一个别名,代指http://198.33.33.33:8000
}
}
},
比如你要请求跨域请求数据http://198.33.33.33:8000/data
只要请求/api/data即可,如下
$.ajax({url:"/api/data",
success:function(res){
console.log(res)
}
})
更多推荐
已为社区贡献18条内容
所有评论(0)