3

我以前使用过嵌套属性和 form_for,但只是缺少一些简单的东西。这是我的模型...

技能.rb

class Skill < ActiveRecord::Base
  belongs_to :tag
  attr_accessible :tag_id, :user_id, :weight
end

标签.rb

class Tag < ActiveRecord::Base
  has_many :skills
  attr_accessible :name, :skills_attributes
  accepts_nested_attributes_for :skills
end

应用程序/视图/标签/_form.html.erb

 <div class="field">
    <%= f.label :name %><br />
    <%= f.text_field :name %>
  </div>
  <%= f.fields_for :skill do |s| %>
    <%= s.label :weight %><br />
    <%= s.text_field :weight %>
  <% end %>

两种模型的参数都可以通过,但是我在控制台中收到了一个 mass assignmentmnet 错误...

Started POST "/tags" for 127.0.0.1 at 2013-07-26 10:13:51 -0400
Processing by TagsController#create as HTML
  Parameters: {"utf8"=>"✓", "authenticity_token"=>"yofQhmgOyNHvnws/Lg+BoS4TqeTwPdyQjQbLXotnEzI=", "tag"=>{"name"=>"test", "skill"=>{"weight"=>"ee"}}, "commit"=>"Create Tag"}
Completed 500 Internal Server Error in 1ms

ActiveModel::MassAssignmentSecurity::Error (Can't mass-assign protected attributes: skill):
  app/controllers/tags_controller.rb:43:in `new'
  app/controllers/tags_controller.rb:43:in `create'

任何帮助表示赞赏!

4

3 回答 3

1

您可以尝试以下方法来处理 has_many:

    <% @tag.skills.each do |skill| %>
        <%= f.fields_for :skills, skill do |s| %>
            <%= s.label :weight %><br />
            <%= s.text_field :weight %>
        <% end %>
    <% end %>

在控制器新建/编辑中:

    @tag.skills.build if @tag.skills.empty?
于 2013-07-26T14:30:26.027 回答
1

Jeremy Pinnix 上面的回答是正确的,只是您还需要更改您的查看代码:

 <%= f.fields_for :skills do |s| %>
   <%= s.label :weight %><br />
   <%= s.text_field :weight %>
 <% end %>

您应该以复数形式引用您的 fields_for 关联。即技能不是技能。

于 2013-07-26T15:26:05.477 回答
1

在 tag.rb 中,使技能属性可访问。

class Tag < ActiveRecord::Base
  has_many :skills
  attr_accessible :name, :skills_attributes, :skill
  accepts_nested_attributes_for :skills
end
于 2013-07-26T14:29:02.323 回答