我正在尝试以简单的形式将关联值作为隐藏字段传递
所以和你做的时候一样的功能......
= simple form for @document do |f|
= f.association :clients
...但会生成隐藏字段 insted
我正在尝试这样做
= f.association :clients, as: hidden
但这显然行不通
唯一对我有用的是
%input{ name: 'document[client_ids][]', value: '1'}
%input{ name: 'document[client_ids][]', value: '2'}
%input{ name: 'document[client_ids][]', value: '3'}