3

我用 Rails 5 和 ActionCable 建立了一个简单的聊天,我有一个简单的“聊天”频道。

如何使频道订阅和消息广播动态化,以便我可以创建聊天频道并将消息发送到正确的频道?

不幸的是,我找不到一个这样的代码示例。

更新

下面的答案是正确的。我还发现它现在在 Rails 指南中提到。不要认为它在http://edgeguides.rubyonrails.org/action_cable_overview.html#client-server-interactions-subscriptions之前就存在

4

1 回答 1

13

在您的订阅创建中传递一个 roomId javascripts/channels/room.js

MakeMessageChannel = function(roomId) {
  // Create the new room channel subscription
  App.room = App.cable.subscriptions.create({
    channel: "RoomChannel",
    roomId: roomId
  }, {
    connected: function() {},
    disconnected: function() {},
    received: function(data) {
      return $('#messages').append(data['message']);
    },
    speak: function(message, roomId) {
      return this.perform('speak', {
        message: message,
        roomId: roomId
      });
    }
  });

  $(document).on('keypress', '[data-behavior~=room_speaker]', function(event) {
    if (event.keyCode === 13) {
      App.room.speak(event.target.value, roomId);
      event.target.value = "";
      event.preventDefault();
    }
    return $('#messages').animate({
      scrollTop: $('#messages')[0].scrollHeight
    }, 100);
  });
};

其中channels/room_channel.rb,它可以作为订阅创建的参数使用,并且说话动作也只是使用正确的数据调用:

  def subscribed
    stream_from "room_channel_#{params[:roomId]}"
  end

  def speak(data)
     Message.create! text: data['message'], room_id: data['roomId']
  end

然后,如果您从工作中广播:

  def perform(message)
    ActionCable.server.broadcast "room_channel_#{message.room_id}", message: render_message(message)
  end
于 2016-05-01T07:35:16.357 回答