我刚开始使用Ancestry而不是awesome_nested_set,我想创建一个嵌套表单,这样我就可以在一个表单中创建一个父帐户和多个子帐户。问题似乎是Ancetry不允许为新的父帐户创建子帐户。
在awesome_nested_set中,我可以在rails控制台中做到这一点
a = Account.new
a.children.build
当我键入.children时,我可以在那里看到那个新的孩子,即使我的帐户家长还没有创建。这让我可以显示一个带有父帐户和几个空白子项的表单,然后在提交时,我会忽略任何空白子项并创建整个批次。
如果我尝试使用祖先做同样的事情,我会得到以下错误:
a=Account.new
a.children
Ancestry::AncestryException: No child ancestry for new record. Save record before performing tree operations.
from /home/map7/.rvm/gems/ruby-1.9.2-p180/gems/ancestry-1.2.4/lib/ancestry/instance_methods.rb:62:in `child_ancestry'
from /home/map7/.rvm/gems/ruby-1.9.2-p180/gems/ancestry-1.2.4/lib/ancestry/instance_methods.rb:132:in `child_conditions'
from /home/map7/.rvm/gems/ruby-1.9.2-p180/gems/ancestry-1.2.4/lib/ancestry/instance_methods.rb:136:in `children'
from (irb):8
from /home/map7/.rvm/gems/ruby-1.9.2-p180/gems/railties-3.0.7/lib/rails/commands/console.rb:44:in `start'
from /home/map7/.rvm/gems/ruby-1.9.2-p180/gems/railties-3.0.7/lib/rails/commands/console.rb:8:in `start'
from /home/map7/.rvm/gems/ruby-1.9.2-p180/gems/railties-3.0.7/lib/rails/commands.rb:23:in `<top (required)>'
from script/rails:6:in `require'
from script/rails:6:in `<main>'
这是祖先的限制吗?我有一种不同的方式可以使用祖先创建嵌套形式?
今天遇到了同样的问题——我认为这是祖先的限制,看看代码(它引发了这个错误if new_record?
)。
虽然这并不理想,但目前我使用的是children.create
而不是children.build
。