直接使用Socket.io官网上面的demo,代码是直接复制的,所用到的express,socket.io都已经安装,可client端不能将消息广播到server端,不知道是什么原因?server:varapp=require("http").createServer(handler);vario=require("socket.io")(app);varfs=require("fs");app.listen(8000);functionhandler(req,res){fs.readFile('index.html',function(err,data){if(err){res.writeHead(500);returnres.end('Errorloadingindex.html')}res.writeHead(200);res.end(data);});}//console.log('io',io);io.on('connection',function(socket){socket.emit('broadcastnews',{hello:'world'});//广播消息socket.on('listenclient',function(data){console.log("ccc",data);console.log("clientmessages",data);})//监听所有的客户端发来的消息})client:Socket.io