如何在rails应用程序中在服务器端制作faye客户端?

时间:2016-06-01 12:50:53

标签: ruby-on-rails faye

我已经在Faye gem上工作了几天。我使用以下代码在客户端创建了Faye客户端:

 var client = new Faye.Client('http://localhost:9292/faye');
   $.get("/chatroom", function (data)
    {
     var UserId = data.user
     client.subscribe("/message/"+UserId+"", function(data)
      {
        //rest of the code
      });
    })

但我希望在服务器端完成此活动如何实现这一目标?每当用户登录时,他都应该订阅推送服务器。

0 个答案:

没有答案