フォーム内のテキストフィールドのsimpleformの命名を無効にすることは可能ですか?
これ:
= f.input_field :age_from,
出力:
<input type="text" size="50" name="/people/search[query]" id="_people_search_query">
する必要があります
<input type="text" size="50" name="/people/search[query]" id="query">
試しました*:name => "query" *:id => "query"
無駄に