0

私はプログラミングとRuby on Railsの両方にまったく慣れていません。http://ruby.railstutorial.org/をフォローしてから、 http://railscasts.comからエピソードを見始めました。私がやろうとしているのは、「単一のフォームで複数のモデルを処理する」ということです。以下に、モデルとその関連付け、およびユーザーから情報を取得しようとしているフォームのビューが表示されます。

私のモデリングはそれです。

雇用主がいて、雇用主には面接があり、面接には質問があります。

カスタム質問モデル:

class Customquestion < ActiveRecord::Base
  attr_accessible :content
  belongs_to :interview

  validates :content, length: {maximum: 300}
  validates :interview_id, presence: true
end

インタビューモデル:

class Interview < ActiveRecord::Base
  attr_accessible :title, :welcome_message
  belongs_to :employer
  has_many :customquestions, dependent: :destroy
  accepts_nested_attributes_for :customquestions

  validates :title, presence: true, length: { maximum: 150 }
  validates :welcome_message, presence: true, length: { maximum: 600 }
  validates :employer_id, presence: true
  default_scope order: 'interviews.created_at DESC'
end

新しいインタビューを作成するためのフォーム;

<%= provide(:title, 'Create a new interview') %>
<h1>Create New Interview</h1>

<div class="row">
  <div class="span6 offset3">
    <%= form_for(@interview) do |f| %>
    <%= render 'shared/error_messages_interviews' %>

      <%= f.label :title, "Tıtle for Interview" %>
      <%= f.text_field :title %>

      <%= f.label :welcome_message, "Welcome Message for Candidates" %>
      <%= f.text_area :welcome_message, rows: 3 %>

      <%= f.fields_for :customquestions do |builder| %>
        <%= builder.label :content, "Question" %><br />
        <%= builder.text_area :content, :rows => 3 %>
      <% end %>
      <%= f.submit "Create Interview", class: "btn btn-large btn-primary" %>
    <% end %>
  </div>
</div>

フォームに必要な情報を入力して送信すると、次のエラーが発生します。

Can't mass-assign protected attributes: customquestions_attributes

Application Trace | Framework Trace | Full Trace
app/controllers/interviews_controller.rb:5:in `create'
Request

Parameters:

{"utf8"=>"✓",
 "authenticity_token"=>"cJuBNzehDbb5A1Zb14BjBfz1eOsjBCDzGhYKT7q6A0k=",
 "interview"=>{"title"=>"",
 "welcome_message"=>"",
 "customquestions_attributes"=>{"0"=>{"content"=>""}}},
 "commit"=>"Create Interview"}

このケースの問題点を理解していただけるよう、十分な情報を提供できたことを願っています。

前もって感謝します

4

1 に答える 1

2

エラーメッセージに書かれていることに従ってください:モデルに追加attr_accessible :customquestions_attributesしてみてください:Interview

class Interview < ActiveRecord::Base
   attr_accessible :title, :welcome_message, :customquestions_attributes
...
于 2012-06-09T20:01:59.817 に答える