我必须做一些非常愚蠢的,因为Node {J}和Socket.IO的http://socket.io/get-started/chat/上的教程(!)聊天示例对我不起作用。更具体地说,'连接'加载网页时,事件未触发。
这是完整的index.js:
var app = require('express')();
var http = require('http').Server(app);
var io = require('socket.io')(http);
app.get('/', function(req, res){
res.sendFile(__dirname + '/index.html');
});
io.on('connection', function(socket){
console.log('a user connected');
});
http.listen(3000, function(){
console.log('1e listening on *:3000');
});
这是完整的index.html:
<!doctype html>
<html>
<head>
<title>1e Socket.IO chat</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font: 13px Helvetica, Arial; }
form { background: #000; padding: 3px; position: fixed; bottom: 0; width: 100%; }
form input { border: 0; padding: 10px; width: 90%; margin-right: .5%; }
form button { width: 9%; background: rgb(130, 224, 255); border: none; padding: 10px; }
#messages { list-style-type: none; margin: 0; padding: 0; }
#messages li { padding: 5px 10px; }
#messages li:nth-child(odd) { background: #eee; }
</style>
</head>
<body>
<script src="/socket.io/socket.io.js"></script>
<script>
var socket = io.connect('http://X.YY.ZZZ.QQ:3000');
socket.on('message', function(msg){
console.log(msg);
document.getElementById("message").innerHTML = msg;
});
</script>
<ul id="messages"></ul>
<form action="">
<input id="m" autocomplete="off" /><button>Send</button>
</form>
</body>
</html>
防火墙信息:
service iptables stop
什么有用:
什么行不通:
有错误代码吗?你如何解决Node.JS / Socket.IO问题?任何内部日志?我看了,但没有看到任何。
我很确定我忽略了一些非常原始的东西,但由于这种网络技术对我来说是新的(我主要是C / C ++家伙),我迷失了。有什么想法吗?