我尝试过console.log(“hello world”);它运行正常。但是,每当有人在服务器上连接时,我都会尝试通知自己的消息('正在侦听端口8080')。目前没有任何事情,以及我正在关注的视频,在运行节点server.js之后在屏幕上,它显示了很多东西,例如:
info - socket.io started
debug - client autothorized
info - handshake authorized
之后我没有显示任何内容,我尝试重新启动计算机,重新安装所有内容。没有什么能解决这个问题。无论如何
我的server.js代码:
var mongo = require('mongodb').MongoClient,
client = require('socket.io').listen(8080).sockets;
mongo.connect('mongodb://127.0.0.1/chat',function(err, db) {
if (err) throw err;
client.on('connection', function(socket){
console.log('listening on port 8080');
});
});