Jim*_*nes 2 ruby-on-rails nested-sets acts-as-nested-set
如果我有这样的树:
Page1
---Page1.1
---Page1.2
---Page1.3
Run Code Online (Sandbox Code Playgroud)
使用awesome_nested_set,如何在Page1节点内向上或向下移动Page1.x?
谢谢.
来自http://github.com/collectiveidea/awesome_nested_set/blob/master/lib/awesome_nested_set.rb:
# Shorthand method for finding the left sibling and moving to the left of it.
def move_left
move_to_left_of left_sibling
end
#Shorthand method for finding the right sibling and moving to the right of it.
def move_right
move_to_right_of right_sibling
end
# Move the node to the left of another node (you can pass id only)
def move_to_left_of(node)
move_to node, :left
end
# Move the node to the left of another node (you can pass id only)
def move_to_right_of(node)
move_to node, :right
end
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
1845 次 |
| 最近记录: |