0
我有Test
模型和User
模型。 Test
模型有很多users
。測試控制器如下。嵌套form_for在軌道
class TestController
def create
Test.create(testparams)
end
private
def testparams
params.require(:test).permit(:test_name,user_attributes:[:user_name])
end
end
在上面的代碼中將創建新的測試。我想爲現有的測試創建新用戶。如何做到這一點?
如果谷歌嵌套形式軌,你會發現資源,讓你開始的,衆說紛紜。也許從rails guide,http://guides.rubyonrails.org/form_helpers.html#nested-forms開始吧。 – margo
我的問題是關於現有對象的嵌套form_for(在這種情況下是測試對象) –