habtm和嵌套表单结果为nil

时间:2011-11-19 01:53:05

标签: ruby-on-rails-3 nested-forms has-and-belongs-to-many

我有3个型号,产品,变化和颜色。我正在使用nested_form gem。

Product has_many :variations

Variation belongs_to :product
Variation has_and_belongs_to_many :colors

Color has_and_belongs_to_many :variations

通过产品表单,我有nested_form for Variations。我想通过复选框关联颜色,但接收undefined local variable or method "color_ids"

产品型号

def new
  @product = Product.new
  1.times { @product.variations.build }
end

def create
  @product = Product.new(params[:product])
  ...
end

我的表格//编辑//

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

  <ul>
  <% @product.errors.full_messages.each do |msg| %>
    <li><%= msg %></li>
  <% end %>
  </ul>
    </div>
<% end %>
<div class="inline-form">
  <%= f.fields_for :variations %>
  <p><%= f.link_to_add "Add a variation", :variations %></p>
</div>

<div class="actions">
 <%= submit_or_cancel(f) %>
</div>
</div>
<% end %>

嵌套表单是一个带

的基本表
<table id="new_item">
  <tr>
<th>Name</th>
<th>Color</th>
  </tr>
  <tr>
    <td><%= f.text_field :name, :size => 40 %></td>
    <td><% for color in Color.all %>
      <%= check_box_tag 'variation[color_ids][]', color.id, variation.color_ids.include?(color.id), :id => dom_id(color) %><%= label_tag dom_id(color), color.name, :class => "check_box_label" %>
    <% end %>
</td>
  </tr>
</table>

1 个答案:

答案 0 :(得分:1)

我猜你的问题是表格color_ids.include?(color.id)的一部分。我需要看到你的表格的其余部分,告诉你如何解决它。

它会像variation.color_ids

另外需要注意的是,在典型/惯用的红宝石中,for循环的样式很奇怪。

这更典型:

<% Color.all.each do |color| %>
  <%= check_box_tag 'variation[color_ids][]', color.id, color_ids.include?(color.id), :id => dom_id(color) %><%= label_tag dom_id(color), color.name, :class => "check_box_label" %>
<% end %>