Question

Here is my nested resource

  resources :hotels do
    resources :roomtype, :reservations
  end

What I would like to do is to list room types on the reservation form and determine the amount of rooms I wish to book. I have tried accept_nested_attributes_for to no avail. I can't seem to succeed to create proper a working fields_for form within the reservation form.

specs: rails 4.1, ruby 2.1

Était-ce utile?

La solution

Rails 4 uses strong params. Update your model_params method of your Controller to accept nested attributes. Here is a good explanation.

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top