我有一个使用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.
感谢您的帮助!