0

我有 2 个模型:一个产品和一个具有以下关联的类别模型:

class Product < ActiveRecord::Base
  belongs_to :category

  validates :title, presence: true
end

class Category < ActiveRecord::Base
  attr_accessible :name
  has_many :products
end

当我尝试使用 simple_form 创建新产品时,在 category_id 字段中,我想要的不是类别的 id,而是类别的名称。

<%= simple_form_for @product do |f| %>
    <%= f.input :title %>
    <%= f.input :description %>
    <%= f.input :price %>
    <%= f.input :category_id %>
    <%= f.button :submit %>
<% end %>

我该怎么做?

4

1 回答 1

2

我相信你会有类似的东西:

<%= simple_form_for @product do |f| %>
    <%= f.input :title %>
    <%= f.input :description %>
    <%= f.input :price %>
    <%= f.association :category, collection: 
                   Category.all, prompt: "Choose a category"%>

    <%= f.button :submit %>
<% end %>
于 2013-06-16T14:12:17.173 回答