vue2.0脚手架设置服务器代理,解决跨域问题
vue2.0脚手架设置服务器代理找到config文件中的index.js中的proxyTable//设置服务器代理proxyTable: {“/api”: {// api相当于一个别名,代指http://192.168.0.14:8081“target”:“http://192.168.0.14:8081”,“changeOrigin”:true,“pathRewrite”: ...
·
vue2.0脚手架设置服务器代理
找到config文件中的index.js中的proxyTable
//设置服务器代理
proxyTable: {
“/api”: { // api相当于一个别名,代指 http://192.168.0.14:8081
“target”:“http://192.168.0.14:8081”,
“changeOrigin”:true,
“pathRewrite”: {
“^/api”:""
}
}
},
当请求跨域请求数据 http://192.168.0.14:8081/data 时,
只要请求/api/data即可,例如
$.ajax({
url:"/api/data",
success:function(res){
console.log(res)
}
})
更多推荐
已为社区贡献11条内容
所有评论(0)