我有一个使用 Ancestry gem 的 Locations 表。当我使用“子树”选择时,我想对条目进行排序。
这在没有子树的情况下有效:
<%= f.association :location, :label_method => :name_desc, :collection => Location.all(:order => :name) %>
但是,这不起作用:
<%= f.association :location, :label_method => :name_desc, :collection => Location.find(locationid).subtree(:order => :name) %>
我收到此错误:
Unknown depth option: order.
谢谢您的帮助!