我有一款使用socket.io的游戏。它在本地玩时运行良好,在通过自己的计算机连接时通过我的IP地址(不是LAN,而是真正的IP)运行良好。
然而,当我把我的IP和端口交给其他人时,索引HTML页面加载得很好,但socket.io的"连接"不起作用。
它在socket.io.js.的第1659行显示错误
Socket.prototype.handshake = function (fn) {
var self = this
, options = this.options;
function complete (data) {
if (data instanceof Error) {
self.connecting = false;
self.onError(data.message);
} else {
fn.apply(null, data.split(':'));
}
};
var url = [
'http' + (options.secure ? 's' : '') + ':/'
, options.host + ':' + options.port
, options.resource
, io.protocol
, io.util.query(this.options.query, 't=' + +new Date)
].join('/');
if (this.isXDomain() && !io.util.ua.hasCORS) {
var insertAt = document.getElementsByTagName('script')[0]
, script = document.createElement('script');
script.src = url + '&jsonp=' + io.j.length;
insertAt.parentNode.insertBefore(script, insertAt);
io.j.push(function (data) {
complete(data);
script.parentNode.removeChild(script);
});
} else {
var xhr = io.util.request();
xhr.open('GET', url, true);
if (this.isXDomain()) {
xhr.withCredentials = true;
}
xhr.onreadystatechange = function () {
if (xhr.readyState == 4) {
xhr.onreadystatechange = empty;
if (xhr.status == 200) {
complete(xhr.responseText);
} else if (xhr.status == 403) {
self.onError(xhr.responseText);
} else {
self.connecting = false;
!self.reconnecting && self.onError(xhr.responseText);
}
}
};
xhr.send(null); //This is the line 1659.
}
};
注意:所有文件都在C:驱动器上的文件夹中,而不是在用户下。
问题是否与安全访问有关?还是别的什么?
服务器+客户端代码
//Server
express = require('express');
http = require('http');
app = express();
server = http.createServer(app);
io = require('socket.io').listen(server);
app.use(express.static(__dirname + '/public'));
server.listen(3000);
app.get('/', function (req, res) { res.sendfile(__dirname + '/index.html'); });
//Client
<script src="/socket.io/socket.io.js"></script>
<script>var socket = io.connect('http://192.168.1.161:3000');</script>
路由器配置http://puu.sh/3ACGz.png
确保您的端口(用于socket.io)由路由器转发。并且您正在使用公共IP(静态)。
您还应该记住,大多数浏览器都不允许通过WebSockets连接到页面中的另一个地址/端口。出于安全原因,您的IP/Domain和端口应该与您的IP/Domain和端口相同,您可以从中服务器html和js。