在rails 4中为具有强参数和嵌套模型的参数分配

时间:2015-01-02 20:33:18

标签: ruby-on-rails forms rails-activerecord nested-attributes strong-parameters

这是我第一次在这里提出问题。我尝试了很多答案,但没有一个能解决我的问题。(对不起我的英语,我正努力改进)。

Okai,问题如下:我正在做一个电子商店,它有产品。产品必须具有类别,但不一定是子类别。我们的想法是,只创建一个产品,包括类别和子类别名称作为参数,rails必须自动创建类别和子类别表的条目。

问题是当我使用表单创建产品时。当我这样做时,在控制台中我看到:"未经许可的参数:类别,子类别"

这是三种模式:

class Product < ActiveRecord::Base

    has_one :subcategory
    has_one :category, through: :subcategory

    accepts_nested_attributes_for :category, :subcategory
end

class Category < ActiveRecord::Base
    belongs_to :product
    has_many :subcategories

    accepts_nested_attributes_for :subcategories
end

class Subcategory < ActiveRecord::Base
    belongs_to :product
    belongs_to :category
end

控制器相关部分:

def create
    @titulo = "Catálogo Online"
    @product = Product.create(product_params)

    respond_to do |format|
        if @product.save
            format.html { redirect_to @product, notice: 'Producto creado.' }
        else
            format.html { render :new }
        end
    end
end

...

def product_params
  params.require(:product).permit(:name, :description, :price, :stock, :code, category_attributes: [:id, :category, :product_id ], subcategory_attributes: [:id, :subcategory, :category_id, :product_id ])
end

表格

<%= 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 |message| %>
        <li><%= message %></li>
      <% end %>
      </ul>
    </div>
  <% end %>

  <div class="field">
    <%= f.label :category %><br>
    <%= f.text_field :category %>
  </div>
  <div class="field">
    <%= f.label :subcategory %><br>
    <%= f.text_field :subcategory %>
  </div>
  <div class="field">
    <%= f.label :name %><br>
    <%= f.text_field :name %>
  </div>
    <div class="field">
    <%= f.label :code %><br>
    <%= f.text_field :code %>
  </div>
  <div class="field">
    <%= f.label :description %><br>
    <%= f.text_area :description %>
  </div>
  <div class="field">
    <%= f.label :price %><br>
    <%= f.number_field :price %>
  </div>
  <div class="field">
    <%= f.label :stock %><br>
    <%= f.check_box :stock %>
  </div>
  <div class="actions">
    <%= f.submit %>
  </div>
<% end %>

请问,这个问题我已经三天了。我不知道该怎么做。感谢。

1 个答案:

答案 0 :(得分:0)

我要说的是,问题是你正在使用text_field输入class和sub_category。为了实现这一点,您应该使用选择字段,然后在UI中提供另一种方法来创建类别和子类别。

将f.text_field:subcategory替换为(并删除:category选项,因为您的数据模型不允许这样做)类似......

<%= f.collection_select :subcategory_id, Subcategory.all, :id, :name, { selected: @product.subcategory_id } %>

...应该允许您将产品分配到子类别。

此外,您的数据模型在此处看起来不正确。产品需要属于子类别,而不是相反。