我在railsapp中构建了 simple_form 字段,当我添加 simple_form 标记时,它的样式会发生变化,我想将这个simple_form与我的alredy构建的前端bootstrap表单集成 这是我的
<input type="text" class="form-control" placeholder="Username" required autofocus />
<%= f.input :email,html:{class: "form-control"},required: false,autofocus: true %>
答案 0 :(得分:1)
你不需要使用{}作为bootstrap类。
并且没有像 f.input
那样的东西<%= f.text_field :email,class: 'form-control',required: false,autofocus: true %>