A
A
Alexey Ivanov2015-01-12 03:11:33
JavaScript
Alexey Ivanov, 2015-01-12 03:11:33

How to get rid of multiple messages after reconnecting to webSockets?

c194ec9e29174d689a597f5774e837b5.pngHello, I decided to use socket.io. Everything was fine until a few messages from the server began to arrive.
After reconnection, incoming messages from the server were duplicated. As if after the disconnect was triggered, the socket.onmessage event handler was not deleted.

socket = io.connect('http://locahost/');

socket.on('connect', function () {
  socket.on('reconnect', function(){
    console.log('Пеподключился');
  });
  
  socket.on('disconnect', function(){
    console.log('Отключился');
  });

  socket.on('message', function(obj) {
    console.log('Пришло сообщение');
  });
});

Answer the question

In order to leave comments, you need to log in

2 answer(s)
A
Alexander Aksentiev, 2015-01-12
@Kandiar

do not bind events inside the connection.
when reconnecting, the connect event fires and again all socket.ons are bound.
As a result, as many reconnects as many duplicates

V
Vlad Timofeev, 2015-01-19
@PyTiMa

Do you have socket.io working? Is it installed via npm?

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question