我正在使用:“socket.io”:“~0.9.10”
当我转到托管在端口 80 上的 apache 网络服务器托管的 client.html 页面时,我遇到了这个问题:
XMLHttpRequest cannot load http://localhost:5000/socket.io/1/?t=1348624895534. Origin http://localhost is not allowed by Access-Control-Allow-Origin.
我在我的服务器端运行 SocketIO 以在端口 5000 上,如下所示:
io = io.listen(5000);
io.set("origins","*");
但是,每次我加载我的 apache client.html 页面时,我都会在我的 SocketIO 服务器控制台中看到:
warn: illegal origin: http://localhost
我该如何摆脱这个问题?