我有三个模型:
P型
has_many :svs
has_many :gs, through: svs
accepts_nested_attributes_for :svs
SV 型
belongs_to :p
belongs_to :g
accepts_nested_attributes_for :g
G型
has_many :svs
has_many :ps, through: svs
我需要的是一个 P 的表单,其中包含一个或多个 SV 的嵌套表单,并且这些 SV 表单中的每一个都必须有另一个嵌套表单,用于恰好一个 G(苗条):
= form_for @p do |p|
...
...
= render 'sv_form', f: p
= p.submit
sv_form
= f.fields_for :svs do |sv|
`= sv.fields_for :g do |g|`
...
...
#sv
= render 'sv_fields', f: sv, g: g
.links
= link_to_add_association 'add sv', f, :svs, partial: 'sv_fields', render_options: {locals: {g: g}}
sv_fields
.nested_fields
= g.label :name # here is the problem: no random id for these fields
= g.text_field :name # here also no random id
= f.label :name
= f.text_field :name
...
...
= link_to_remove_association 'remove SV', f
只要我只用一个 SV 保存 P 就可以了。但是,一旦我添加了第二个 SV,第二个 SV G 名称就会覆盖第一个 G 名称。使用 firebug 检查表单我可以看到第二个 G 名称缺少随机 ID,因此错误变得清晰。任何帮助表示赞赏......!