我有 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 %>
我该怎么做?