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

vue-socket.io跨域问题的解决方法

时间:2020-02-11 14:51:46      阅读:166      评论:0      收藏:0      [点我收藏+]

标签:exp   conf   led   ade   解决办法   source   解决   tar   pre   

 

 

报错信息:

1 Access to XMLHttpRequest at ‘http://192.168.37.130:5050/socket.io/?EIO=3&transport=polling&t=N0oqNsW‘ from origin ‘http://localhost:8080‘ has been blocked by CORS policy: No ‘Access-Control-Allow-Origin‘ header is present on the requested resource.
2 vue-socketio.js?70bb:8 GET http://192.168.37.130:5050/socket.io/?EIO=3&transport=polling&t=N0oqNsW net::ERR_FAILED

解决办法:

 1 //vue.config.js
 2 
 3 module.exports = {
 4   devServer: {
 5     proxy: {
 6         ‘/socket.io‘: {
 7           target: ‘http://192.168.37.130:5050‘,
 8           ws: true,
 9           changeOrigin: true
10         },
11         ‘sockjs-node‘: {
12           target: ‘http://192.168.37.130:5050‘,
13           ws: false,
14           changeOrigin: true
15         },
16     }
17 
18   }
19 }

 

vue-socket.io跨域问题的解决方法

标签:exp   conf   led   ade   解决办法   source   解决   tar   pre   

原文地址:https://www.cnblogs.com/zhengze/p/12294916.html

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