我在節點模型上通過awesome nested set表示組織層次結構。太好了,效果很好,更新很貴,但發現效率很高。 每個節點模型has_many在其他模型上,我們稱它們爲Foo和Bar。 class Node < ActiveRecord::Base
acts_as_nested_set
has_many :foos
has_many :bars
end
c
嗨創建真棒嵌套組關聯的動態形式與我有點軌新手,我有兩個車型類別和產品 class Category < ActiveRecord::Base
attr_accessible :name, :parent_id
has_many :products
acts_as_nested_set
validates_presence_of :name
end
class Product < Ac