我使用的是简单形式,但不会显示 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
呢?