我正在尝试一次创建多级对象。但是在强参数中得到错误。
错误
$image_type
Rails 4
Unpermitted parameter: abc
PS:在两个模型中使用def parent_params
params.require(:parent).permit(
:event_id,
:description,
child_attributes: [
:people_count,
:some_attribute,
:some_other_attribute,
grandchild_attributes: [:abc]
]
)
end
。但是,无论如何,我认为强对手并不关心。