我对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>
答案 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 %>