码迷,mamicode.com
首页 > 其他好文 > 详细

4.Vue跨域session问题解决

时间:2018-11-20 17:38:12      阅读:246      评论:0      收藏:0      [点我收藏+]

标签:做了   ios   func   --   oop   table   directory   session   str   

1.设置koa2服务器从本地代理转发
修改:项目/config/index.js-->dev中
proxyTable: {
‘/api‘: {
target: ‘http://localhost:3000‘,
changeOrigin: true,
pathRewrite: { //需要rewrite重写的, 如果在服务器端做了处理则可以不要这段
‘^/api/‘: ‘‘
}
}
},

//--------------------------------------------------
dev: {
env: require(‘./dev.env‘),
port: 8080,
autoOpenBrowser: true,
assetsSubDirectory: ‘static‘,
assetsPublicPath: ‘/‘,
proxyTable: {
‘/api‘: {
target: ‘http://localhost:3000‘,
changeOrigin: true,
pathRewrite: { //需要rewrite重写的, 如果在服务器端做了处理则可以不要这段
‘^/api/‘: ‘‘
}
}
},
//--------------------------------------------------

2.axios访问路径改为:
axGet(‘/api/hall/getRoomList‘,{},function(res){
alert(res.data);
},function(err){
alert(err);
});

3.一定要重启vue服务器

4.Vue跨域session问题解决

标签:做了   ios   func   --   oop   table   directory   session   str   

原文地址:https://www.cnblogs.com/xintao/p/9990183.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!