2

是否可以否决 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"

无济于事

4

2 回答 2

5

像您的其他问题一样,html 选项应该在 simple_form 中的 input_html 哈希中传递:

<%= f.input :age_from, ..., :input_html => { :id => 'my_id' } %> should work.
于 2012-08-30T18:49:00.953 回答
0

我认为您需要在 html 属性哈希中传递它

html: {id: '查询'}

于 2012-08-30T17:42:08.267 回答