我使用的模型与Rails Admin的两个belongs_to关联。
belongs_to :product, inverse_of: :services
belongs_to :user, inverse_of: :services
accepts_nested_attributes_for :product, allow_destroy: true
accepts_nested_attributes_for :user, allow_destroy: true
添加accepts_nested_attributes_for
会使生成的表单看起来像这样,而不选择在现有记录中搜索。
没有accepts_nested_attributes_for
它看起来很像我想要的
有没有办法强制Rails管理员使用搜索选择?
field :user do
nested_form false
end
没有像我预期的那样工作。
答案 0 :(得分:0)
好
field :user do
nested_form false
end
实际上工作正常。我只是在列表块中使用它而不是编辑...叹息