WebSockets with node.js



我正在尝试WebSocket的一个例子来开发一个简单的聊天。

server.js:

var app = require('http').createServer(handler)
, io = require('socket.io').listen(app)
, fs = require('fs')
app.listen(8080);
function handler (req, res) {
   fs.readFile(__dirname + '/test.html',
   function (err, data) {
      if (err) {
        res.writeHead(500);
        return res.end('Error loading index.html');
      }
    res.writeHead(200);
    res.end(data);
  });
}

test.html:

<script src="/socket.io/socket.io.js"></script>
<script>
 var socket = io.connect('http://localhost');
 socket.on('connect', function() {
  alert('<li>Connected to the server.</li>');
 });
 socket.on('message', function(message) {
    alert(message);
 });
 socket.on('disconnect', function() {
   alert('<li>Disconnected from the server.</li>');
 });
 function sendF(){
    var message = "Test";
    socket.send(message);
    alert('Test Send');     
}

test.html我也有一个简单的按钮,onClick呼叫sendF

如果我尝试,当我连接,发送和断开连接时,我在浏览器上看到一个警告,如果我在控制台检查,我看到这个消息。

但是我不能从服务器收到相同的消息,在我的浏览器中显示它!我认为socket.on('message'...不适合我!

您的server.js缺少事件监听器。它也缺少了在浏览器中发送要显示的消息的位置。

io.sockets.on('connection', function (socket) {
  console.log('user connected');
  socket.send('hello world');
  socket.on('disconnect', function () {
    console.log('user disconnected.');
  });
  socket.on('message', function (data) {
    console.log(data);
  });
});

相关内容

  • 没有找到相关文章

最新更新