一直在努力使这个简单的例子使用socket.io。我最初在使用Cygwin的Windows 7上尝试过。此后也尝试过OS X,结果相同。
运行脚本时,它显示了这个......
2 May 20:57:47 - socket.io ready - accepting connections
但访问index.html页面并未显示客户端已连接。
的index.html
<html>
<head>
<script type="text/javascript" src="socket.io.js"></script>
<script type="text/javascript">
var socket = new io.Socket('localhost',{'port':8090});
socket.connect();
socket.on('connect', function(){
console.log('connected');
socket.send('hi!');
});
socket.on('message', function(data){
console.log('message recived: ' + data);
});
socket.on('disconnect', function(){
console.log('disconected');
});
</script>
</head>
<body></body>
</html>
server.js
var http = require('http'), io = require('socket.io'),
server = http.createServer(function(req, res){
res.writeHead(200, {'Content-Type': 'text/html'});
res.end('<h1>Hello world</h1>');
});
server.listen(8090);
var socket = io.listen(server);
socket.on('connection', function(client){
console.log('client connected');
client.on('message', function(){
console.log('message arrive');
client.send('some message');
});
client.on('disconnect', function(){
console.log('connection closed');
});
});
关于我可能做错的任何想法?没有显示任何控制台消息。值得注意的是,当我使用Firebug查看index.html页面时,没有嵌入任何脚本,这很奇怪。不确定是什么原因造成的。
答案 0 :(得分:9)
您没有在index.html文件中正确加载socket.io库。试试这个:
<script type="text/javascript" src="http://localhost:8090/socket.io/socket.io.js"></script>
答案 1 :(得分:8)
你没有提供socket.io.js(或flash文件)。
我建议使用CDN:
<script src="http://cdn.socket.io/stable/socket.io.js"></script>
或者使用express来提供socket.io.js文件。
编辑:
实际上看起来更接近你也没有提供index.html 再次表达可以工作,但对于一个简单的例子:
var fs = require('fs');
var index = fs.readFileSync('index.html');
//note the readFileSync is done only in the first tic
.
.
.
res.writeHead(200, {'Content-Type': 'text/html'});
res.end(index);
答案 2 :(得分:1)
在客户端使用此作为路径!
<script type="text/javascript" src="/socket.io/socket.io.js"></script>
答案 3 :(得分:0)
是的,并评论以下一行:
// server.listen(8090);