1

1時間のトレーニングを予約できるアプリケーションを作成しています。私は、これは私のコードですが、私はトレーニングで、インデックスの予約を作ってるんだ、ユーザーにトレーニング(時間)に計上されて誰が見するオプションを与えたい:1時間のトレーニングで予約用のインデックスを作成しようとしています

class BookingsController < ApplicationController 
    before_action :load_training, only: [:create] 

    def new 
    @booking = Booking.new 
    @training = Training.find(params[:training_id]) 
    @booking.training_id 
    end 

    def create 
    @booking = @training.bookings.build(booking_params) 
    @booking.user = current_user 

    if @booking.save 
     flash[:success] = "Book created" 
     redirect_to trainings_path 
    else 
     render 'new' 
    end 
    end 


    def index 
    @bookings = Booking.all 
    end 


    def destroy 
    @booking = Booking.find(params[:id]) 
    @booking.destroy 
    flash[:success] = "Book deleted" 
    redirect_to trainings_path 
    end 



private 
    def booking_params 
    params.require(:booking).permit(:user_id, :training_id) 
    end 

    def load_training 
    @training = Training.find(params[:training_id]) 
    end 

end 

予約モデル:

class Booking < ApplicationRecord 
    belongs_to :user 
    belongs_to :training 
    default_scope -> { order(created_at: :desc) } 
    validates :user_id, presence: true 
    validates :training_id, presence: true 



end 

マイroutes.rbを:

Rails.application.routes.draw do 

    root 'static_pages#home' 
    get '/signup',    to: 'users#new' 
    get '/contact',    to: 'static_pages#contact' 
    get '/about',    to: 'static_pages#about' 
    get '/login',    to: 'sessions#new' 
    post '/login',    to: 'sessions#create' 
    delete '/logout',    to: 'sessions#destroy' 
    get '/book',     to: 'bookings#new' 
    post '/book',     to: 'bookings#create' 
    delete '/unbook',    to: 'bookings#destroy' 


    resources :account_activations, only: [:edit] 
    resources :password_resets,  only: [:new, :create, :edit, :update] 

    resources :trainings do 
    resources :bookings 
    end 
    resources :users 
end 

私はトレーニング・ショー(研修の具体的な時間)に行くときのコードは以下の通りです:

<div class="row"> 
    <section> 
     <h1> 
HOUR: <%= @training.hour %> 
     </h1> 
    </section> 
    <section> 
     <h1> 
SLOTS: <%= @training.slots %> 
     </h1> 
    </section> 
    <center> 
    <%= render 'bookings/booking_form' if logged_in? %> 
    <%= render 'bookings/index_bookings' if logged_in? %> 
    </center> 

_index_bookings.html.erbは次のとおりです。

<ul class="bookings"> 
<% if current_user.bookings(@training) %> 
    <li> 
<%= link_to @training_id, training_bookings_path %> 
</li> 
<% end %> 
</ul> 

アプリは私にエラーを与える:

Showing /home/cesar/Apps/boxApp/app/views/bookings/_index_bookings.html.erb where line #4 raised:

No route matches {:action=>"index", :controller=>"bookings", :id=>"7"} missing required keys: [:training_id]

それがある場合、私は、それがtraining_idを取らない理由を知りたいです7のクラスのidをとって、それをどうやって修正するのか。

+1

試みたが、これにそれを変更する追加: 'training_bookings_path(@trainingを)' – eiko

+0

おかげで、それが働きました。神はあなたを祝福 –

+0

助けてうれしい!私は答えとしてそれを追加しました、今私たちはそれが動作することを知っている。チャンスを取ったときに答えを受け入れることができれば、同じ問題を抱えている他のユーザーを助けるでしょう。ありがとう! – eiko

答えて

1

ネストされたリソースのURLを使用して、あなたがそうのように、最初のパラメータとして親リソースを渡す必要があります。

training_bookings_path(@training) 
関連する問題