0
我正在使用Simple Form,不知道如何顯示2個關聯的值。如何顯示兩個模型的選擇菜單?
價格可以屬於某個服務或產品,但不能同時存在。
Price
# service_id, product_id
belongs_to :services # service.name
belongs_to :products # product.name
end
而不必我簡單的形式是這樣的:
<%= f.association :product, :input_html => { :class => "span5 } %>
<%= f.association :service, :input_html => { :class => "span5 } %>
我希望把它變成一個場代替。
simple_form_for
是什麼方式?
怎麼樣與經常form_for
?