rails5.2です。
初歩的な質問でたいへん恐縮です。
ビュー側(テキストボックス)で入力した値がコントローラ(params)で取得できないです。
今日1日頑張りましたが原因が分かりません。。。
Action Cableを使ってチャットアプリを作ってる所ですが、今回の原因に関係あるでしょうか?不足情報あれば追記します。
取得できない原因分かる方どうか教えていただけないでしょうか?
モデル
ruby
1class CreateMessages < ActiveRecord::Migration[5.2] 2 def change 3 create_table :messages do |t| 4 t.text :text 5 6 t.timestamps 7 end 8 end 9end 10
view側
show.html.erb
以下のようにform_tagやform_withは使わず直書きです
html
1<form action="/messages" accept-charset="UTF-8" data-remote="true" method="post"> 2 <input id="chat-form" type="text" data-behavior="chat_post" name="message" value="入力" > 3</form>
コントローラ側
MessagesController
以下のようにデバッグしてもparams[:message]に何も入っていません。
登録自体はエラーなく出来ています。
ruby
1class MessagesController < LoginController 2 before_action :logged_in_user 3 4 def show 5 @messages = Message.all 6 7 end 8 9 def create 10 @message = Message.new(text: params[:message]) 11 logger.debug "デバッグ" 12 logger.debug params[:message] 13 @message.save! 14 end 15end 16
サーバログ
テキストボックスに「てすと。」と入力した時にログです。
Finished "/cable/" [WebSocket] for 58.13.43.197 at 2020-07-14 11:26:03 +0000 ChatChannel stopped streaming from chat_channel Started GET "/cable" for 58.13.43.197 at 2020-07-14 11:26:03 +0000 Cannot render console from 58.13.43.197! Allowed networks: 127.0.0.1, ::1, 127.0.0.0/127.255.255.255 Started GET "/cable/" [WebSocket] for 58.13.43.197 at 2020-07-14 11:26:03 +0000 Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: upgrade, HTTP_UPGRADE: websocket) ChatChannel is transmitting the subscription confirmation ChatChannel is streaming from chat_channel ChatChannel#post({"message"=>"てすと。"}) [ActionCable] Broadcasting to chat_channel: {"message"=>"てすと。", "action"=>"post"} ChatChannel transmitting {"message"=>"てすと。", "action"=>"post"} (via streamed from chat_channel) Started POST "/messages" for 58.13.43.197 at 2020-07-14 11:26:10 +0000 Cannot render console from 58.13.43.197! Allowed networks: 127.0.0.1, ::1, 127.0.0.0/127.255.255.255 Processing by MessagesController#create as JS Parameters: {"message"=>""} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] デバッグ (0.1ms) begin transaction Message Create (1.0ms) INSERT INTO "messages" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", ""], ["created_at", "2020-07-14 11:26:10.542622"], ["updated_at", "2020-07-14 11:26:10.542622"]] (4.8ms) commit transaction No template found for MessagesController#create, rendering head :no_content Completed 204 No Content in 34ms (ActiveRecord: 5.9ms)
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。