4

server_timenode.js を使用して、毎秒すべてのクライアントに電流を送信しようとしています。そのため、すべてのクライアントにイベントを発行して時刻を送信するために使用したかったsetInterval()のですが、うまくいきません。適切な場所で関数を定義しましたsetIntervalか、それとも何か他のものを見逃していましたか?

var http = require("http");
var socketIO = require('socket.io');
var connect = require('connect');

//keep track of every connected client
var clients = {};

//create Server 
var httpServer = connect.createServer(
    connect.static(__dirname)
).listen(8888);


//socket
var io = socketIO.listen(httpServer);
io.sockets.on('connection', function (socket) {

    //add current client id to array
    clients[socket.id] = socket;
    socket.on('close', function() {
        delete clients[socket.fd]; // remove the client.
    });

    //send news on connection to client
    socket.emit('news', { hello: 'world' }); 

    //this one works fine!
    //send server time on connection to client
    socket.emit("server_time", { time: new Date().toString() });

});

//this doesn't work!
// Write the time to all clients every second.
setInterval(function() { 
    var i, sock;
    for (i in clients) {
        sock = clients[i];
        if (sock.writable) { // in case it closed while we are iterating.
            sock.emit("server_time", {
                console.log("server_time sended");
                time: new Date().toString()

            });
        }
    }
}, 1000);       //every second
4

2 に答える 2

2

問題は次の関数です。

if (sock.writable) { // in case it closed while we are iterating.
  sock.emit("server_time", {
    // console.log("server_time sended"); // get rid of this line -> invalid code
    time: new Date().toString()
  });
}

sock.writableであるundefinedため、emitイベントは送信されません。プロパティをtrueon connection およびfalseon close に設定します。

于 2012-10-08T18:02:24.953 に答える
2

問題を解決するための回避策/改善策を提案できますか。クライアントをチャット ルームに追加します。どこかで:

io.sockets.on('connection', function (socket) {

を追加

socket.join('timer');

次に、setIntervallは次のようになります

setInterval(function() { 
    io.sockets.in('timer').emit("server_time", { time: new Date().toString() })
}, 1000); 

これがうまくいくことを願っています!

于 2012-10-08T17:24:52.627 に答える