最初のメッセージを「こんにちは」として送信するチャットアプリを作成しようとしています。しかし、いくつかの理由 (不安定なインターネット接続が 1 つかもしれません) により、ソケットが複数回初期化され、「Hi. there」メッセージが複数回送信されます。以下はコードです。複数のメッセージを送信するためにアプリを停止するには?
io.socket.on('connect', function() {
/* On successfull connection to server */
console.log('Connected to server');
//Some code here
io.socket.get(url + '/userstatus/subscribe', function(resData, jwres) {
//Some code here
io.socket.on("userstatus", function(event) {
//Socket updartes
// Send Message code at this line.
}
}
});