railsでチャットアプリを作っている途中でタイトルのエラーが出ました。
具体的には、
html
1 /chat_app4/app/views/rooms/show.html.erb 2<h1>Chat Room</h1> 3 <input type='text' id='input' /> 4 <button id="button" >送信</button> 5 <div id="messages"> 6 <%= render @messages %> 7 </div>
rails
1/chat_app4/app/views/messages/_message.html.erb 2<p><%= message.content %></p>
javascripts
1/chat_app4/app/assets/javascripts/channels/room.js 2App.room = App.cable.subscriptions.create("RoomChannel", { 3 connected: function() { 4 console.log('connected') 5 // Called when the subscription is ready for use on the server 6 }, 7 8 disconnected: function() { 9 // Called when the subscription has been terminated by the server 10 }, 11 12 received: function(data) { 13 alert(data) 14 15 // Called when there's incoming data on the websocket for this channel 16 }, 17 18 speak: function(content) { 19 return this.perform('speak', {message: content}); 20 } 21}); 22 23document.addEventListener('DOMContentLoaded', function(){ 24 const input = document.getElementById('chat-input') 25 const button = document.getElementById('button') 26 button.addEventListener('click', function(){ 27 const content = input.value 28 App.room.speak(content) 29 input.value = '' 30 }) 31}) 32
rails
1/chat_app4/app/channels/room_channel.rb 2class RoomChannel < ApplicationCable::Channel 3 def subscribed 4 stream_from "room_channel" 5 end 6 7 def unsubscribed 8 # Any cleanup needed when channel is unsubscribed 9 end 10 11 def speak(data) 12 Message.create!(content: data['message']) 13 ActionCable.server.broadcast 'room_channel', data['message'] 14 end 15end
今こういった状態なのですが、サーバーで何かしらのメッセージを打ち、
送信を押すと、サーバのconsoleに
Uncaught TypeError: Cannot read property 'value' of null at HTMLButtonElement.<anonymous>
のエラーメッセージが出ます。
自分的には、アラートに入力したメッセージが出てきてほしかったです。
どこを直せばいいか教えていただきたいです。
回答1件
あなたの回答
tips
プレビュー