我有一个可以通过表单
更新的模型instance.update(some_relations: [ {id: 1, some_other_relation_id: 26}])
这很有效。具有id 1的some_other_relation的some_relation被更新为指向26.
但是我不知道如何为此创建表单。我一直在寻找html看起来像
.... name=model[some_relation][][id] type="hidden"
.... name=model[some_relation][][some_other_relation_id]
但我不确定如何使用内置的表单助手(我更喜欢硬编码)来做到这一点。