前提・実現したいこと
プログラミングスクールに通うプログラミング初心者です。
現在、ruby on rails でイベント投稿アプリを開発しています。
このイベント投稿アプリでは、そのイベント投稿に対して参加の意思を送信できるようにエントリー機能を
実装しています。
イベント投稿の詳細画面から「エントリー」リンクをクリックすることで、そのイベントのエントリー新規投稿画面(entry#new)を表示させたいのですが、そこでエラーが発生しました。
発生している問題・エラーメッセージ
ActiveRecord::RecordNotFound in EntriesController#new Couldn't find Event without an ID {"_method"=>"get", "event_id"=>"1"}
該当のソースコード
(routes.rb) Rails.application.routes.draw do devise_for :users root to: 'home#top' resources :users resources :events do resources :comments, only: :create resources :entries, only: [:new, :create] end end
(events_controller.rb) class EventsController < ApplicationController def index @events = Event.all end def new @event = Event.new end def create @event = Event.new(event_params) if @event.valid? @event.save redirect_to root_path else render :new end end def show @event = Event.find(params[:id]) @comment = Comment.new @comments = @event.comments.includes(:user) end def edit @event = Event.find(params[:id]) end def update @event = Event.find(params[:id]) if @event.update(event_params) redirect_to event_path(@event) else render :edit end end private def event_params params.require(:event).permit(:title, :details, :category_id, :event_prefecture_id, :people_number_id, :cost, :event_date, :start_time, :end_time, :event_image, :event_address).merge(user_id: current_user.id) end end
(events/show.html.erb) (#省略) <%= link_to 'エントリーへ', new_event_entry_path(@event.id), method: :get , class: "nav-link ms-1 text-dark" %>
(entries_controller.rb) class EntriesController < ApplicationController def new @event = Event.find(params[:id]) @entry = Entry.new end def create entry = Entry.new(entry_params) if entry.valid? entry.save redirect_to root_path else render :new end end private def entry_params params.require(:entry).permit(:family_name, :last_name, :j_family_name, :j_last_name, :entry_comment).merge(user_id: current_user.id, event_id: params[:event_id]) end end
(entries/new.html.erb) <div class="top-title-box row border border-bottom"> <div class="container my-auto"> <h4 class="top-title text-center font-italic"><b><em>エントリーページ</em></b></h4> </div> </div> <div class="container"> <% if user_signed_in? %> <%= form_with(model: [@event, @entry], local: true) do |f| %> <%= render 'shared/error_messages', model: f.object %> <div class="field mt-3"> <b><%= f.label :family_name, "お名前(名字)" , class: "my-2" %></b><br/> <%= f.text_field :family_name, class:"form-control", placeholder:"お名前(名字)" %> </div> <div class="field mt-3"> <b><%= f.label :last_name, "お名前(名前)" , class: "my-2" %></b><br/> <%= f.text_field :last_name, class:"form-control", placeholder:"お名前(名前)" %> </div> <div class="field mt-3"> <b><%= f.label :j_family_name, "フリガナ(名字)" , class: "my-2" %></b><br/> <%= f.text_field :event_date, class: "form-control" %> </div> <div class="field mt-3"> <b><%= f.label :j_last_name, "フリガナ(名前)" , class: "my-2" %></b><br/> <%= f.text_field :j_last_name, class: "form-control" %> </div> <div class="field mt-3"> <b><%= f.label :title, "主催者へコメント" , class: "form-control" %></b><br/> <%= f.text_area :entry_comment %> </div> <%= f.submit "エントリー" ,class: "btn btn-primary col-4 offset-4 mt-3" %> <% end %> <% else %> <strong><p>※※※ コメントの投稿には新規登録/ログインが必要です ※※※</p></strong> <% end %> </div>
(entry.rb)モデル class Entry < ApplicationRecord belongs_to :user belongs_to :event end
class Event < ApplicationRecord (#省略) belongs_to :user has_many :comments has_many :entries (#省略) end
class User < ApplicationRecord (#省略) has_many :events has_many :comments has_many :entries end
試したこと
エラーメッセージからeventのidがうまく届いていないと考え、entries_controller.rbにて
def new
+binding.pry
@event = Event.find(params[:id])
@entry = Entry.new
end
を記述したところ
=> <ActionController::Parameters {"_method"=>"get", "controller"=>"entries", "action"=>"new", "event_id"=>"1"} permitted: false>が返ってきた。
この結果から、entries_controllerのnewアクションが実行される前まではevent_idはとって来れていると考えたため、
entries_controller.rbのnewに記述した
@event = Event.find(params[:id])の記述が間違っていると考えたが、このidを受け渡すための記述方法がわからなかった。
補足
インデントが揃っておらず無駄な記述も多いためとても見にくいコードかと思います。これから、勉強を進めていく中で、マシなコードが書けるよう努力しますので、アドバイスいただけると幸いです。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。