我在simple_form中使用以下DSL:
<%= m.association :accessories, label_method: :full_name, value_method: :id, include_blank: false %>
我想重新排序下拉列表,按:full_name
答案 0 :(得分:0)
根据simple_form readme,没有选择这样做。为了实现您想要的目标,您可以传递collection
选项。
<%= m.association :accessories, collection: Accessory.order(:name), label_method: :full_name, value_method: :id, include_blank: false %>