mardi 8 septembre 2015

Nested routes form_for partial not working for new and edit actions - Rails 4

I used the generator to scaffold categories and questions.

my routes.rb

  resources :categories do
    resources :questions do
      resources :choices, only: [:index]
    end
  end

my problem occurs when i try to add or edit a question.

here is my partial form, before you ask the relationship works ok.

<%= form_for [@question.category, @question] do |f| %>
  <% if @question.errors.any? %>
    <div id="error_explanation">
      <h2><%= pluralize(@question.errors.count, "error") %> prohibited this question from being saved:</h2>

      <ul>
      <% @question.errors.full_messages.each do |message| %>
        <li><%= message %></li>
      <% end %>
      </ul>
    </div>
  <% end %>

  <div class="field">
    <%= f.label :question_type %><br>
    <%= f.text_field :question_type %>
  </div>
  <div class="field">
    <%= f.label :explanation %><br>
    <%= f.text_field :explanation %>
  </div>
  <div class="field">
    <%= f.label :description %><br>
    <%= f.text_field :description %>
  </div>
  <div class="field">
    <%= f.label :category_id %><br>
    <%= f.text_field :category_id %>
  </div>
  <div class="actions">
    <%= f.submit %>
  </div>
<% end %>

what must i change for it to work? for now i get,

undefined method `questions_path'

Aucun commentaire:

Enregistrer un commentaire