此输入:
<%= f.input :keywords, label: false, :input_html => {:class => "span8"}, :placeholder => "Park Slope, Prospect Heights, Fort Green..." %>
产生这个:
<div class="control-group string optional">
<div class="controls">
<input class="string optional span8" id="search_keywords" name="search[keywords]" placeholder="Park Slope, Prospect Heights, Fort Green..." size="50" type="text" />
</div>
</div>
如何在没有div的情况下单独生成input
?
谢谢。
我们做这样的事情,像这样传递一个参数wrapper: false
<%= f.input :keywords,
label: false,
wrapper: false,
input_html: { class: 'span8' },
placeholder: 'Park Slope, Prospect Heights, Fort Green...' %>
看看它会起作用
希望这能帮助
因此,似乎最好的方法是使用f.input_field
。
Simple_Form的文档并不十分清楚,但您可以在这里查看实际的API文档。
来自文档:
simple_form_for @user do |f|
f.input_field :name
end
将生产:
<input class="string required" id="user_name" maxlength="100"
name="user[name]" size="100" type="text" value="Carlos" />
使用常规text_field
<%= f.text_field :keywords, :class => "string optional span8", :placeholder => "Park Slope, Prospect Heights, Fort Green..." %>