前提・実現したいこと
チャットアプリを作っています。
新規ルーム作成でルーム作成してもDBにデータが保存されず作成できません。
発生している問題・エラーメッセージ
10: def create => 11: binding.pry 12: @room = Room.new(room_params) 13: if @room.save 14: redirect_to root_path 15: else 16: render :new 17: end 18: end [1] pry(#<RoomsController>)> params => <ActionController::Parameters {"authenticity_token"=>"FgYmoKI5vS1jNDnDxju/nOgwnhh80v1MPfeQZxsCyKqBKkd+R5NpclQtyposV9vf+IbxhHuCFVsiiS6YqoAgzQ==", "room"=>{"name"=>"abcd", "user_ids"=>["3", "4"]}, "commit"=>"Create Room", "controller"=>"rooms", "action"=>"create"} permitted: false> [2] pry(#<RoomsController>)> exit User Load (0.8ms) SELECT `users`.* FROM `users` WHERE `users`.`id` IN (3, 4) ↳ app/controllers/rooms_controller.rb:12:in `create' Rendering rooms/new.html.erb within layouts/application Rendered shared/_header.html.erb (Duration: 1.4ms | Allocations: 790)
該当のソースコード
controllers/rooms_controller.rb def new @room = Room.new end def create binding.pry @room = Room.new(room_params) if @room.save redirect_to root_path else render :new end end private def room_params params.require(:room).permit(:name, user_ids: []) end end
該当のソースコード
views/rooms/new.html.erb <div class='chat-room-form'> <h1>新規チャットルーム</h1> <%=form_with model: @room, local: true do |f|%> <div class='chat-room-form__field'> <div class='chat-room-form__field--left'> <%= f.label :チャットルーム名, class: 'chat-room-form__label'%> </div> <div class='chat-room-form__field--right'> <%= f.text_field :name, class: 'chat__room_name chat-room-form__input', placeholder: 'チャットルーム名を入力してください'%> </div> </div> <div class='chat-room-form__field'> </div> <div class='chat-room-form__field'> <div class='chat-room-form__field--left'> <label class='chat-room-form__label' for='chat_room_チャットメンバー'>チャットメンバー</label> </div> <div class='chat-room-form__field--right'> <select name="room[user_ids][]"> <option value="">チャットするユーザーを選択してください</option> <% User.where.not(id: current_user.id).each do |user| %> <option value=<%= user.id %>><%= user.name %></option> <% end %> </select> <input name="room[user_ids][]" type="hidden" value=<%= current_user.id %>> </div> </div> <div class='chat-room-form__field'> <div class='chat-room-form__field--left'></div> <div class='chat-room-form__field--right'> <%= f.submit class: 'chat-room-form__action-btn'%> </div> </div> <% end %> </div>
試したこと
チャットルーム名、ユーザー名を選択してもエラーが出てしまいます。
あなたの回答
tips
プレビュー