在我的应用中,我的Domain
模型包含以下列:name
,link
,description
。
目前我的应用程序正常运行,因为我一次只能添加一个域(来自new action
)。我正在寻找的是能够从同一个表单/页面添加任意数量的域。
之前我使用了nested_forms
,但通常使用nested_attributes
作为其他模型。
我如何能够为同一模型nested_forms
或有其他方式?
答案 0 :(得分:0)
这可以完成,但不能以RESTful方式完成。有一些黑客可以做到,但我不建议,最好的方法是associations
并添加nested_attributes
。