サーバー.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]と表示されます。
何か案は?