前提・実現したいこと
献立をフォームに入力して複数のモデルに保存するという機能をフォームオブジェクトを用いて実装しようとしていました。
フォームオブジェクトAnotherDishでsaveメソッドの定義とバリデーションを書き込んでいるのですが、AnotherDish内に書き込まれているのがsaveメソッドのみだと正常にモデルに保存されるのに、バリデーションを設定するとundefiend method 'save'のエラーが出ました。
発生している問題・エラーメッセージ
NoMethodError (undefined method `save' for #<AnotherDish:0x00007fadc633ee58>): app/controllers/main_controller.rb:14:in `create' Started POST "/main" for ::1 at 2021-07-07 21:45:25 +0900 Processing by MainController#create as HTML Parameters: {"authenticity_token"=>"F2ntZuHckLcZeCmchPrveCTDDto+kAeGwCMxpWQLZ35h1cJj0pGBO1Tmgv9O2tLOgEsRpiZnuoky9YC3bRg1VA==", "another_dish"=>{"u_staple"=>"", "u_main"=>"", "u_sub"=>"", "u_soup"=>""}, "commit"=>"登録する"} Rendering main/show.html.erb within layouts/application Rendered main/show.html.erb within layouts/application (Duration: 0.2ms | Allocations: 113) [Webpacker] Everything's up-to-date. Nothing to do Completed 500 Internal Server Error in 11ms (Views: 9.3ms | ActiveRecord: 0.0ms | Allocations: 9019)
該当のソースコード
ruby
1#app/models/another_dish.rb 2 3class AnotherDish 4 include ActiveModel::Model 5 6 attr_accessor :u_staple, :u_main, :u_sub, :u_soup 7 8 with_options uniqueness: true do 9 validates :u_staple 10 validates :u_main 11 validates :u_sub 12 validates :u_soup 13 end 14 15 def save 16 unless u_staple.blank? 17 UserStaple.create(u_staple: u_staple) 18 end 19 20 unless u_main.blank? 21 UserMainDish.create(u_main: u_main) 22 end 23 24 unless u_sub.blank? 25 UserSubDish.create(u_sub: u_sub) 26 end 27 28 unless u_soup.blank? 29 UserSoup.create(u_soup: u_soup) 30 end 31 end 32end
ruby
1#app/controllers/main_controller.rb 2 3class MainController < ApplicationController 4 protect_from_forgery 5 def index 6 @user_dish = AnotherDish.new 7 end 8 9 def create 10 @user_dish = AnotherDish.new(dish_params) 11 if @user_dish.u_staple.blank? && @user_dish.u_main.blank? && @user_dish.u_sub.blank? && @user_dish.u_soup.blank? 12 render :show 13 elsif @user_dish.valid? 14 @user_dish.save 15 redirect_to root_path 16 else 17 render :index 18 end 19 end 20 21 private 22 23 def dish_params 24 params.require(:another_dish).permit(:u_staple, :u_main, :u_sub, :u_soup) 25 end 26end
試したこと
バリデーションの記述を削除すると問題なくsaveが実行されます。しかしバリデーションを設定するとエラーになります。
補足情報(FW/ツールのバージョンなど)
rails 6.0.0
あなたの回答
tips
プレビュー