如何将Ruby嵌入Bootstrap输入表单?

时间:2014-12-29 19:05:49

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

我想这样说:<%= f.text_field:name%>

进入下面的代码,但我一直收到错误。如何正确嵌入它以便代码可以正常工作。谢谢!



<form>
  <div class="form-group">
    <input type= class="form-control" id="exampleInputEmail1" placeholder="Enter Value">
  </div>
</form>
&#13;
&#13;
&#13;

4 个答案:

答案 0 :(得分:0)

你没有&#39;需要整个输入部分,只需这样做:

<%= f.text_field :name , :class=> "form-control"%> 

答案 1 :(得分:0)

只需通过参数:class

将bootstrap类添加到代码中

答案 2 :(得分:0)

使用Formtastic Bootstrap它是rails的gem,使用自动引导类创建表单

答案 3 :(得分:0)

'f'未在您的代码中实例化,因此以下代码将在表单中引发错误 -

<%= f.text_field :name %>

或者你可以使用它 -

<%= text_field_tag :name,'', :placeholder => "Enter Value", :class=>"form-control", :id=>"exampleInputEmail1"  %>

这不会引起嵌入表单的任何错误。