前提・実現したいこと
Ruby on Railsを使って排便の記録をつけるアプリを作っています
排便を投稿する機能を今作っているところです
deviseでユーザーを登録して他にテーブルが二つあり
子ユーザーテーブル(human)と排便の記録テーブル(poop)ルーティングのネストさせています。
子ユーザーのページにあるフォームから投稿するとターミナル上でエラーが出て保存されません。
ストロングパラメーターでIDをマージさせているのですが、保存させれなくて困っています
コメントをいただき、修正させていただきました。
PoopsControllerに
@poop.save!
と付け足すことでエラーの内容が
ActiveRecord::RecordInvalid in PoopsController#create
Validation failed: Humans must exist
となりました。
お忙しいと思いますがぜひご教授お願いします
発生している問題・エラーメッセージ
ActiveRecord::RecordInvalid in PoopsController#create Validation failed: Humans must exist Extracted source (around line #13): 11 def create 12 @poop = Poop.create(poop_params) 13 @poop.save! 14 redirect_to root_path 15 end 16 Request Parameters: {"authenticity_token"=>"BOGqp4VSXR+R00Y2RIVBBbiThd2ghuAXV++5C6Q9DOC1LXAzxCMwm7vfBlO+vBXvwlMvVm9pPyMzPIHn5vWW9A==", "poop"=>{"state_id"=>"2", "weight_id"=>"2", "detail"=>"", "start_time(1i)"=>"2021", "start_time(2i)"=>"12", "start_time(3i)"=>"9", "start_time(4i)"=>"00", "start_time(5i)"=>"25"}, "commit"=>"投稿する", "human_id"=>"19"} Toggle session dump Toggle env dump Response Headers: None
該当のソースコード
PoopsController
1class PoopsController < ApplicationController 2 3 def index 4 5 end 6 7 def new 8 @poop = Poop.new 9 end 10 11 def create 12 @poop = Poop.create(poop_params) 13 @poop.save! 14 redirect_to root_path 15 end 16 17 18 private 19 20 def poop_params 21 params.require(:poop).permit(:state_id, :detail, :weight_id, :start_time).merge(user_id: current_user.id, human_id: params[:human_id]) 22 end 23end
フォームのビューファイル
<p id="notice"><%= notice %></p> <div class="show"> <p> <strong>名前</strong> <%= @human.name %> </p> <p> <strong>種類</strong> <%= @human.type.name %> </p> <%= link_to '編集', edit_human_path(@human.id) %> <%= link_to '消去',"#", method: :delete, data: { confirm: '本当に?' } %> <%= link_to '戻る', root_path %> </div> <p> <%= form_with model: @poop, url:human_poops_path(@human), method: :post, local: true do |f| %> <div class="article-box"> 記事を投稿する <p><%= f.collection_select(:state_id, State.all, :id, :name, {}, {class:"genre-select"}) %></p> <p><%= f.collection_select(:weight_id, Weight.all, :id, :name, {}, {class:"genre-select"}) %></p> <p><%= f.text_area :detail, class:"text", placeholder:"詳細" %></p> <p><%= f.datetime_select :start_time %></p> </div> <p><%= f.submit "投稿する" ,class:"btn" %></p> </div> <% end %> </p>
poopモデル
class Poop < ApplicationRecord extend ActiveHash::Associations::ActiveRecordExtensions belongs_to :user belongs_to :humans belongs_to :state belongs_to :weight validates :state_id, numericality: { other_than: 1, message: "can't be blank" } validates :weight_id, numericality: { other_than: 1, message: "can't be blank" } end
routes
1Rails.application.routes.draw do 2 devise_for :users 3 root to: "humans#index" 4 resources :humans do 5 resources :poops, only:[:index, :new, :create] 6 end 7end 8
補足情報(FW/ツールのバージョンなど)
Rails 5.2.2
mac OS Monterey
お忙しいと思いますがよろしくお願いします。
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。