我的表单发送给控制器的参数包含:
"biblio"=>{"authors_attributes"=>{"0"=>{"name"=>""}}, "title"=>"", "subtitle"=>"",
如何通过强参数获取author_attributes?
我试过了:
params.require(:biblio).permit(
:title,
:subtitle,
authors_attributes:["0"][:nom] )
或更好:我如何摆脱那个" 0"在authors_attributes中,rails是否自动插入?