Rails5.2です
最短で作るActionCableチャットアプリ
上記を参考に簡単なチャットを作ろうとしてます。
文字を入力してEnter→文字をappendしたいのですが画面に何も表示されません。
サーバのログにエラーメッセージは出てるようなのですが、
原因がよく分かりません。
(NameError - undefined local variable or method `data')
分かる方教えていただけないでしょうか?
エラーメッセージ
ChatChannel#post({"message"=>"っっっっっっっっっっっっっっっっっっっq"}) Started GET "/in_progress" for 58.13.43.197 at 2020-07-13 04:15:31 +0000 Cannot render console from 58.13.43.197! Allowed networks: 127.0.0.1, ::1, 127.0.0.0/127.255.255.255 Could not execute command from ({"command"=>"message", "identifier"=>"{\"channel\":\"ChatChannel\"}", "data"=>"{\"message\":\"っっっっっっっっっっっっっっっっっっっq\",\"action\":\"post\"}"}) [NameError - undefined local variable or method `data' for #<ChatChannel:0x00007f707d1743b0>]: /home/ec2-user/environment/vvv/app/channels/chat_channel.rb:12:in `post' | /home/ec2-user/.rvm/gems/ruby-2.6.3/gems/actioncable-5.2.4.3/lib/action_cable/channel/base.rb:268:in `public_send' | /home/ec2-user/.rvm/gems/ruby-2.6.3/gems/actioncable-5.2.4.3/lib/action_cable/channel/base.rb:268:in `dispatch_action' | /home/ec2-user/.rvm/gems/ruby-2.6.3/gems/actioncable-5.2.4.3/lib/action_cable/channel/base.rb:168:in `block in perform_action' | /home/ec2-user/.rvm/gems/ruby-2.6.3/gems/activesupport-5.2.4.3/lib/active_support/notifications.rb:170:in `instrument' Processing by MessagesController#in_progress as HTML
app/assets/javascripts/channels/chat.js
javascript
1App.chat = App.cable.subscriptions.create("ChatChannel", { 2 3 connected: function() {}, 4 disconnected: function() {}, 5 received: function(data) { 6 alert(data['message']); 7 return $('#test').append('<p>' + data['message'] + '</p>'); 8 }, 9 10 post: function(message) { 11 return this.perform('post', { message: message }); 12 } 13}, $(document).on('keypress', '[data-behavior~=chat_post]', function(event) { 14 if (event.keyCode === 13) { 15 var chatForm = $('#chat-form'); 16 App.chat.post(chatForm.val()); 17 return chatForm.val(''); 18 } 19})); 20
/app/channels/chat_channel.rb
ruby
1class ChatChannel < ApplicationCable::Channel 2 def subscribed 3 stream_from "chat_channel" 4 end 5 6 def unsubscribed 7 # Any cleanup needed when channel is unsubscribed 8 end 9 10 def post 11 ActionCable.server.broadcast('chat_channel', data) 12 end 13end 14
app/views/messages/in_progress.html.erb
ruby
1<div id="test">ここにメッセージ追加してみるテスト</div>
/app/controllers/messages_controller.rb
ruby
1class MessagesController < ApplicationController 2 3 def in_progress 4 end 5 6end 7
config/routes.rb
ruby
1 get '/in_progress', to: 'messages#in_progress', as: 'in_progress'
以上です。
宜しくお願い致します。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。