微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

jquery – socket.on事件每次响应都会重复多次

我成功融合后设置了socket.emit事件.但是当我绑定sockets.on事件时会出现问题.它被多次开除.

$(document).on('click','#comment_button',function() {
    $.ajax({
        // upon success
        success: function (response) {

            if (response) {
                socket.emit('postcomment');

                socket.on('refresh',function () {
                    console.log('refresh');
                  //This console.log('refresh') is coming multiple times. I mean its occurance increases with every successful ajax response.
                });
        }
    });
});

这是我的server.js

socket.on('postcomment',function () {
        io.sockets.emit("refresh");
});

我已经验证在我的server.js中,socket.on函数只被调用一次.
我不确定在ajax中socket.on(‘refresh’,function(){}有什么问题.
任何帮助都会很棒.

P.S socket connection is already made. No problem in that.

EDIT: I rectified the mistake. If anyone is reading this in future.
As jason and Niranjan mentioned,socket.on{} event was binding themselves upon successful response.
To be simple:
Every time the click handler is called,it attaches additional event listeners to the socket. The listeners you attached on the prevIoUs clicks remain active.

所以我对之前的代码进行了以下更改

$(document).on('click',function() {
    $.ajax({
        // upon success
        success: function (response) {

            if (response) {
                socket.emit('postcomment');

        }
    });
});

socket.on('refresh',function () {
    console.log('refresh');
});

快乐的编码.

解决方法

我对之前的代码进行了以下更改.
有效.

$(document).on('click',function () {
    console.log('refresh');
});

socket.on{} event was binding themselves upon successful response. To be simple: Every time the click handler is called,it attaches additional event listeners to the socket. The listeners you attached on the prevIoUs clicks remain active.

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐