如何在NodeJs websocket

时间:2017-02-20 15:30:48

标签: node.js websocket

在我的模块中,有一个客户端< - > Server1< - > Server2

客户端向Server1请求websocket Server2将消息传递给Server1

当Server1的消息发生变化时,我不知道如何监听Server1 请建议我一些方法。

var temp ;
var aSocket ;
app.post( '/synReciver', function( req, res ) {
     console.log( 'I'm Server2, and I get Message from Server2' ) ;
     temp = req.headers ;
     res.end();
});

io.sockets.on('connection', function (socketIO) {
     socketIO.on('fromWebClient', function (webClientData) {
         aSocket[socketIO.id] = socketIO;
     });

     var interval= setInterval(function() {
       if ( temp[0] != null ) {
          aSocket[socketIO.id].emit('A message from server2 ' +temp[0] ) ;
       }
     },1000);

     socketIO.on('disconnect', function () {
         console.log('DISCONNECTED FROM CLIENT');
     });
 });

我希望套接字在连接时不会发出,但等待临时数组更改

1 个答案:

答案 0 :(得分:0)

它的工作

 var interval= setInterval(function() {
   aSocket[socketIO.id] = socketIO;

   if ( typeof(temp) != 'undefined' && temp != null ) {

      aSocket[socketIO.id].emit('pushToWebClient', temp);
      temp = {} ;
   } else {
         console.log('temp are null');
   }