acts_as_nested_set得使用 - 白牙的日志 - 努力哇!
acts_as_nested_set得使用
白牙
posted @ 2009年10月24日 05:04
in rubyonrails
with tags
rails_plugin
, 2619 阅读
安装:ruby script\plugin install acts_as_nested_set
Api
- root?() – 是否是根对象
- child?() – 是否是子对象(拥有父对象)
- unknown?() – 不知道该对象的状态(既不是根对象,也不是子对象)
- add_child(child_object) – 为根对象添加一个子对象(如果child_object是一个根对象的话,则添加失败)
- children_count() – 根对象的所有子对象的个数
- full_set() – 重新找到所有对象
- all_children() – 根对象的所有子对象
- direct_children() –根对象的直接子对象
example
http://ruby.codefetch.com/example/jo/rails-code/ar/acts_as_nested_set.rb?qy=web