0

サーバー.js

var app = require('http').createServer(handler)
  , io = require('socket.io').listen(app)
  , fs = require('fs')

app.listen(process.env.PORT);

function handler (req, res) {
  fs.readFile(__dirname + '/index.html',
  function (err, data) {
    if (err) {
      res.writeHead(500);
      return res.end('Error loading index.html');
    }

    res.writeHead(200);
    res.end(data);
  });
}

io.sockets.on('connection', function (socket) {
  socket.emit('message', { msg: 'world' });
  socket.on('message', function (msg) {
    console.log(msg);
    console.log('That was a message from the client :)');
  });
});

index.html:

<script src="/socket.io/socket.io.js"></script>
<script>
  var socket = io.connect('EDITED');
  document.write("test");
  socket.on('message', function (msg) {
    alert(msg);
    //console.log(data);
    socket.emit('message', { msg: 'hello there server' });
  });
</script>

サーバーは「hello there server」というメッセージを受け入れ、コンソールに正しく表示しています。ただし、サーバーがメッセージ「hello」をクライアントに送信すると、クライアントは「hello」と表示されるポップアップ アラートを表示することになっています。「こんにちは」というポップアップ アラートの代わりに、 [object Object]と表示されます。

何か案は?

4

1 に答える 1

1

応答はオブジェクトです:

socket.on('message', function(data) {
    alert(data.msg);

console.logの代わりに構造を見ることができるので、このようなデバッグ メッセージを送信するときに使用することを検討します[object Object]

于 2013-03-13T02:29:00.450 に答える