simple_form引导输入

时间:2017-05-15 14:39:21

标签: html ruby-on-rails twitter-bootstrap

我对html和erb相当新,我在使用自定义simple_form时遇到了问题。

我需要翻译这个html.erb输入

<%= object.input :attribute, label: 'mylabel' %>

到这个html输入类型

<label class="col-sm-3 control-label">mylabel</label>
<div class="col-sm-9">
  <input class="form-control">
</div>

1 个答案:

答案 0 :(得分:1)

您需要将:horizontal_forml包装和'form-horizontal'课程添加到form

<%= simple_form_for @post, html: { class: 'form-horizontal' }, wrapper: :horizontal_form do |f| %>
  <%= f.input :attribute, label: 'mylabel' %>
<% end %>