2

私はRailscasts 196のエピソードに従っており、彼が持っているものを正確に試していますが、次のエラーが発生しています

ActiveModel::MassAssignmentSecurity::Error in SurveysController#create
Can't mass-assign protected attributes: questions_attributes
Rails.root: /home/jean/rail/surveysays

これまでの私のコード

アンケート用紙

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

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

  <div class="field">
    <%= f.label :name %><br />
    <%= f.text_field :name %>
  </div>

  <%= f.fields_for :questions do |bf|%>
    <%= bf.label :content, "Question" %><br />
    <%= bf.text_area :content, :rows=> 3 %>
  <% end %>
  <div class="actions">
    <%= f.submit %>
  </div>
<% end %>

調査関係

class Survey < ActiveRecord::Base
  has_many :questions, :dependent => :destroy
  accepts_nested_attributes_for :questions
  attr_accessible :name
end

質問関係

class Question < ActiveRecord::Base
  belongs_to :survey
  attr_accessible :content, :survey_id
end

新しいコントローラー

def new
    @survey = Survey.new
    3.times {@survey.questions.build }

    respond_to do |format|
      format.html # new.html.erb
      format.json { render json: @survey }
    end
  end
4

1 に答える 1

0

クラスをこれに変更します

class Survey < ActiveRecord::Base
  has_many :questions, :dependent => :destroy
  accepts_nested_attributes_for :questions
  attr_accessible :name, :questions_attributes
end

詳細については、トピック「attr_accessible での使用」を探してください

于 2012-08-03T19:30:40.167 に答える