前提・実現したいこと
お世話になります。
Railsで、自由にフォームを追加・削除できるようにcocoonを導入しています。
そのcocoonを使った投稿ページにて、フォーム追加・削除の機能を追加する記述をするとエラーになりました。
発生している問題・エラーメッセージ
複数エラーが出ています。。。
ローカルサーバーでのエラー
- RuntimeError in Rooads#new
- 500 (Internal Server Error)
ターミナルでのエラー
- Completed 500 Internal Server Error
- ActionView::Template::Error
該当のソースコード
該当するカラムは、まだ全ては記入していません。
親になるビュー
new
1<%= form_with model: @rooad, local: true do |f| %> 2<!-- 中略 --> 3 <div class="field"> 4 <%= f.fields_for :repetition, local: true do |c| %> 5 <%= render 'repetition_fields', f: c %> 6 <% end %> 7 </div> 8 <div class="field"> 9 <%= link_to_add_association '子を追加', f, :repetition, 10 data: { association_insertion_method: 'before' } %> 11 </div> 12<!-- 中略--> 13<% end %>
レンダー先のビュー
repetition
1<div class="field"> 2 <%= f.label 'Child name' %><br> 3 <%= f.text_field :name %> 4 <% if @rooad.persisted? %> 5 <%= f.label '削除' %> 6 <%= f.check_box :_destroy %> 7 <% end %> 8 <br> 9 </div>
controllers
1class RooadsController < ApplicationController 2 def index 3 if user_signed_in? 4 render :index 5 else 6 redirect_to root_path 7 end 8 @roods = Rooad.includes(:user).order(created_at: :desc) 9 end 10 11 def new 12 @rooad = Rooad.new 13 @repetitions = @rooad.repetitions.build 14 end 15 16 def create 17 @rooad = Rooad.new(rooad_params) 18 if @rooad.save 19 redirect_to rooads_path 20 else 21 render :new 22 end 23 end 24 25 private 26 27 def rooad_params 28 params.require(:rooad).permit(:status, :title, :detail, 29 repetition_attributes:[:name, :period, :memo, :_destroy]).merge(user_id: current_user.id, rooad_id: params[:rooad_id]) 30 31 end 32end 33
model
1class Rooad < ApplicationRecord 2 belongs_to :user 3 has_many :repetitions, inverse_of: :rooad, dependent: :destroy 4 accepts_nested_attributes_for :repetitions, allow_destroy: true 5 validates_associated :repetitions 6 7 extend ActiveHash::Associations::ActiveRecordExtensions 8 belongs_to :status 9 10 with_options presence: true do 11 validates :title 12 validates :status_id, numericality: { other_than: 1, message: 'どちらか選択してください' } 13 end 14end
補足情報(FW/ツールのバージョンなど)
作成に当たって参考にしたページ
https://qiita.com/tanutanu/items/a9f435e33b2d4533b3a2
https://qiita.com/seimiyajun/items/dff057b3eb40434d5c27
gem 'cocoon'
gem "jquery-rails"
gem 'rails', '~> 6.0.0'
ご協力のほど、よろしくお願いします。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/09/16 05:19
2021/09/16 05:29
2021/09/16 05:53