1

我正在 Rails 中构建一个聊天室类型的系统,我需要检测用户何时离开服务器上的频道(即关闭页面),以便我可以更新活动用户列表。我在 GitHub 上搜索了文档和示例,但似乎找不到答案。

我过去使用过 SignalR,它会触发断开连接事件,但我在 Rails 5 中找不到等效的(如果确实存在的话)。

我可以在频道类中看到带有取消订阅方法的示例,但是无论我导航到新页面还是完全关闭浏览器,这都不会触发。

编辑:不确定这是否有帮助,但我没有使用 turbolinks。

4

2 回答 2

1

这是 Rails 5 的 beta 2 的一个问题。我已经在最新版本 - beta 4 中尝试过它,现在它按预期触发了。

这是供参考的github问题:https ://github.com/rails/rails/pull/23715

于 2016-06-11T17:19:16.293 回答
0

尝试这个

App.chatroom.disconnected()
=> yourChannel stopped streaming from chatroom #rails terminal

App.chatroom = App.cable.subscriptions.create({channel: 
     'yourChannel'}, {

     disconnected: function () {
       App.cable.subscriptions.remove(this)
       this.perform('unsubscribed') #in the channel have a method 'unsubscibed' to update users
     },
 )}
于 2017-07-11T14:50:03.073 回答