#やりたいこと
親レコードと子レコードを1つのフォームで登録したいwithout "accepts_nested_attributes_for"
※accepts_nested_attributes_forを用いた方法については以前、20時間悩んで質問までして、うまくいかなかったため、今回の手法を試しています。
以前の質問内容
しかしながら早速、エラーが発生しています。
フォームが記述されているviewファイルを開く際に発生します。
def initializeしていないから?保存場所が間違っているようにも思えます。
ルーティングの仕方や記載する場所など教えていただけると幸いです。
#現状起こっていること
マネフォワの技術者の記事を見様見真似でファイルを作成してみましたがエラーが出ます。
accepts_nested_attributes_forを使わず、複数の子レコードを保存する
ソースファイルは後述しますが、ルーティングの設定が理解できなかったので新たにtuning_all_formコントローラを作ってnewもcreateもそちらに実装しています。
#ソースコード
tuning_all_form_controller.rb
rails
1class TuningAllFormsController < ApplicationController 2 def new 3 @tuning_all_form = TuningAllForm.new 4 end 5 6 def create 7 @tuning_all_form = TuningAllForm.new(tuning_all_form_params) 8 @tuning_all_form.save 9 end 10 11 private 12 13 def tuning_all_form_params 14 params.require(:tuning_all_form_params).permit(:name, tunings_attributes: [:string_num, :note_name]) 15 end 16end
##tuning_all_form>new.html.haml
haml
1.content 2 =form_with url: tuning_all_form_tuning_alls_path, method: :post, local: true do |f| 3 .content__instrument-name 4 =f.text_field :instrument_name, id: "search_instrument_name", placeholder: "楽器名称" 5 =f.text_field :instrument_id, id: "selected_instrument_id", class: "form_blind" 6 .content__search-result 7 8 .content__strings 9 - 5.times do 10 =f.fields_for :tunings do |tuning| 11 .strings__string 12 =tuning.hidden_field :string_num, value: 5 13 =tuning.text_field :note_name, placeholder: "string" 14 .content__name 15 名称 16 =f.text_field :name 17 .content__btn 18 =f.submit "登録"
##routes.rb
rails
1Rails.application.routes.draw do 2# 省略 3 resources :instruments, except: :index do 4 collection do 5 get :search 6 end 7 end 8 resources :keys, only: :create 9 resources :tuning_alls, except: :show do 10 end 11 resources :tuning_all_form, only: [:new, :create] 12#省略 13end
##/app/form/tuning_all_form.rb
rails
1class TuningAllForm 2 include ActiveModel::Model 3 4 concerning :TuningAllBuilder do 5 def tuning_all 6 @tuning_all = TuningAll.new 7 end 8 end 9 10 concerning :TuningsBuilder do 11 def tunings 12 @tunings_attributes = Tuning.new 13 end 14 15 def tunings_attributes=(attributes) 16 @tunings_attributes = Tuning.new(attributes) 17 end 18 end 19 20 attr_accessor :name 21 22 def save 23 return false if invalid? 24 25 tuning_all.assign_attributes(tuning_all_params) 26 build_asscociations 27 28 if tuning_all.save 29 true 30 else 31 false 32 end 33 end 34 35 private 36 37 def tuning_all_params 38 { 39 name: name 40 } 41 end 42 43 def build_asscociations 44 tuning_all.tunings << tunings 45 end 46end
##各種モデル
###tuning_all
rails
1class TuningAll < ApplicationRecord 2 #略 3 has_many :tunings 4 accepts_nested_attributes_for :tunings 5 belongs_to :instrument 6 #略 7end
###tuning
rails
1class Tuning < ApplicationRecord 2 belongs_to :tuning_all 3end
試したこと
- tuning_allコントローラ内のcreateアクションに上記のtuning_all_formコントローラの名前をそのまま代入
→エラー発生。送られてくるデータがtuning_allモデルであるため、emptyとみなされる?
検討している実現手段
モデルについて朝からインプットする中で2つのアイデアが浮かびました。
それぞれ分からない、これから調査する内容をマインドマップに書き出しました。
ついでにaccepts~についても記載していますが基本的に真ん中案で進めたい。
#補足情報(FW/ツールのバージョンなど)
- ruby 2.5.1p57
- rails (5.2.4.2)
- haml (5.1.2)
- haml-rails (2.0.1)
- mysql2 (0.5.3)
- 他にjqueryとscssを併用しています。
あなたの回答
tips
プレビュー