Pusher 事件被触发两次

Mat*_*nya 4 javascript php events publish-subscribe pusher

我正在使用 Pusher (pusher.com) 在管理员发送通知时向所有登录的客户端触发通知。

出于某种原因,该事件拍摄了两次,尽管我只触发了一次。

客户端订阅代码:

var handleToastrListener = function() {

     var pusher = new Pusher("913284db62a0cc237db4");
     var channel = pusher.subscribe('toastr-channel');

           channel.bind('new-toast', function(data) {

            toastr.options = data.options;
            var $toast = toastr[data.scf](data.msg, data.title);

           return true;

           });  
   }

       handleToastrListener();
Run Code Online (Sandbox Code Playgroud)

服务端发布代码(PHP使用pusher包):

 $pusher = new Pusher(PUSHER_KEY, PUSHER_SECRET, PUSHER_APP_ID);
 $pusher->trigger('toastr-channel', 'new-toast', $input );
Run Code Online (Sandbox Code Playgroud)

Pusher 调试控制台显示只收到一条消息。

但是,pusher-js Javascript 日志记录显示两条消息:

Pusher : Event recd : {"event":"new-toast","data":{"options":{"positionClass":"toast-top-right","onclick":"","showDuration":"1000","hideDuration":"1000","timeOut":"5000","extendedTimeOut":"1000","showEasing":"swing","hideEasing":"linear","showMethod":"fadeIn","hideMethod":"fadeOut"},"title":"Toastr Notifications","msg":"Gnome & Growl type non-blocking notifications","scf":"success"},"channel":"toastr-channel"} app.js:143
Pusher : Event recd : {"event":"new-toast","data":{"options":{"positionClass":"toast-top-right","onclick":"","showDuration":"1000","hideDuration":"1000","timeOut":"5000","extendedTimeOut":"1000","showEasing":"swing","hideEasing":"linear","showMethod":"fadeIn","hideMethod":"fadeOut"},"title":"Toastr Notifications","msg":"Gnome & Growl type non-blocking notifications","scf":"success"},"channel":"toastr-channel"}
Run Code Online (Sandbox Code Playgroud)

进一步看,我发现订阅发生了两次,尽管我只调用了一次:

Pusher : Event sent : {"event":"pusher:subscribe","data":{"channel":"toastr-channel"}} app.js:143
Pusher : Event recd : {"event":"pusher_internal:subscription_succeeded","data":{},"channel":"toastr-channel"} app.js:143
Pusher : No callbacks on toastr-channel for pusher:subscription_succeeded app.js:143
Pusher : State changed : connecting -> connected app.js:143
Pusher : Event sent : {"event":"pusher:subscribe","data":{"channel":"toastr-channel"}} app.js:143
Pusher : Event recd : {"event":"pusher_internal:subscription_succeeded","data":{},"channel":"toastr-channel"} app.js:143
Pusher : No callbacks on toastr-channel for pusher:subscription_succeeded 
Run Code Online (Sandbox Code Playgroud)

leg*_*ter 6

您绝对应该查看并适当更新您的问题的两件事:

  1. Pusher 调试控制台- 事件在那里显示两次吗?
  2. pusher-js JavaScript 日志记录- 事件是否被记录为传入两次?

这里的另一个常见问题是有时事件可能被绑定到两次——因此,两个回调。但是,您的代码并不表明这种情况正在发生。

  • 嗯,这很尴尬。原来我在代码的不同地方两次调用了句柄 (3认同)