<% semantic_form_for(@product, :html => {:multipart => true}) do |f| %>
<% f.inputs do %>
<%= f.input :name %>
<%= f.input :price %>
<%= f.input :pno %>
<%= f.input :description %>
<%= f.input :shop_category %>
<% end %>
<% end %>
产品属于 Shop_category,Shop_category 属于 Shop。
如何更改线路:
<%= f.input :shop_category %>
仅显示属于具有 id 的商店的 shop_categories 例如 15 而不是在选择框中显示所有 shop_categories ?