5

DHH の Rails5 ActionCable チャットの例に従って、会話とそこに多くのメッセージを含む別の例を作成します。

rails g model conversation 

class Conversation < ApplicationRecord
  has_many :messages
end

rails g model message content:text conversation:references

ビュー/会話/show.html.erb

<h1>Conversation</h1>

<div id="messages">
  <%= render @messages %>
</div>

<form>
  <label>Say something:</label><br>
  <input type="text" data-behavior="conversation_speaker">
</form>

ビュー/メッセージ/_message.html.erb

<div class="message">
  <p><%= message.content %></p>
</div>

私の質問は、会話に関連するすべてのメッセージがデータベースに書き込まれるチャネル ロジックを作成する方法です。

まず、コンソールで会話とメッセージを録音しました

Conversation.create
Message.create(conversation_id: '1', content: 'hello')

その後、ジョブを作成しました

rails g job MessageBroadcast

class MessageBroadcastJob < ApplicationJob
  queue_as :default

  render_message(message)
  def perform(data)
    message = Message.create! content: data
    ActionCable.server.broadcast 'conversation_channel', message: render_message(message)
  end

  private
    def render_message(message)
      ApplicationController.renderer.render(partial: 'messages/message',
                                             locals: { message: message })
    end
end

そしてチャンネル

rails g channel conversation speak

assets/javascripts/channels/conversation.coffee

App.conversation = App.cable.subscriptions.create "ConversationChannel",
  connected: ->
    # Called when the subscription is ready for use on the server

  disconnected: ->
    # Called when the subscription has been terminated by the server

  received: (data) ->
    # Called when there's incoming data on the websocket for this channel
    $('#messages').append data['message']

  speak: ->
    @perform 'speak'

$(document).on 'keypress', '[data-behavior~=conversation_speaker]', (event) ->
  if event.keyCode is 13 # return = send
    App.conversation.speak event.target.value
    event.target.value = ""
    event.preventDefault()

私が書く場合:

チャンネル/conversation_channel.rb

class ConversationChannel < ApplicationCable::Channel
  def subscribed
    stream_from "conversation_channel"
  end

  def speak
    Message.create! content: data['message']
  end
end

私は得る

Started GET "/cable/" [WebSocket] for ::1 at 2016-04-22 00:22:13 +0200
Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: keep-a
live, Upgrade, HTTP_UPGRADE: websocket)
Started GET "/cable" for ::1 at 2016-04-22 00:22:13 +0200
Started GET "/cable/" [WebSocket] for ::1 at 2016-04-22 00:22:13 +0200
Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: keep-a
live, Upgrade, HTTP_UPGRADE: websocket)
ConversationChannel is transmitting the subscription confirmation
ConversationChannel is streaming from conversation_channel
ConversationChannel is transmitting the subscription confirmation
ConversationChannel is streaming from conversation_channel

問題ないように見えますが、テキストフィールドにテキストを入力してリターンキーを押すと、次のようになります。

Could not execute command from {"command"=>"message", 
"identifier"=>"{\"channel\":\"ConversationChannel\"}", 
"data"=>"{\"action\":\"speak\"}"}) 
[NameError - undefined local variable or method `data' for #<ConversationChannel:0x00000008ad3100>]: 
C:/Sites/ActionCable/app/channels/conversation_channel.rb:13:
in `speak' | C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/actioncable-5.0.0.beta3/lib/action_cable/channel/base.rb:253:
in `public_send' | C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/actioncable-5.0.0.beta3/lib/action_cable/channel/base.rb:253:
in `dispatch_action' | C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/actioncable-5.0.0.beta3/lib/action_cable/channel/base.rb:163:
in `perform_action' | C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/actioncable-5.0.0.beta3/lib/action_cable/connection/subscriptions.rb:49:
in `perform_action'

何か案は?

4

1 に答える 1

4

クライアント側からサーバー側に移行するには、(まず)speak関数がパラメーターを受け入れ、messageそのメッセージを JSON オブジェクトとしてサーバーに送信する必要があります。

speak: (message) ->
  @perform 'speak', message: message

speak次に、 channels/conversation_channel.rb で関数が受け取るパラメーターを定義する必要があります。したがって、次のように再定義する必要があります。

def speak(data)
  Message.create! content: data['message']
end

speakこれで、メソッドはパラメーターを受け取ります。これは、サーバーに送信されたメッセージを含むプロパティをdata持つ JSONです。messageデータベースに記録されていますが、チャンネル登録者への回答はありません。

したがって、上記のメソッドを次のように再定義することを通知する必要があります。

def speak(data)
  Message.create! content: data['message']
  ActionCable.server.broadcast 'conversation_channel', message: render_message(message)
end

private

def render_message(message)
  ApplicationController.renderer.render(partial: 'messages/message',
                                         locals: { message: message })
end

これで動作するはずです。バックグラウンドで何をするかはあなた次第です;)

于 2016-04-23T16:36:34.870 に答える