我正在尝试在 Rails中使用Bootstrap 表单。但是在检查了我的后脚手架创建的 _form 部分后,我不太确定如何使用常规输入法编辑变量。
例如,这是内置的表单代码:
<%= form_for(@post) do |f| %>
<div class="field">
<%= f.label :name %><br />
<%= f.text_field :name %>
</div>
<div class="field">
<%= f.label :content %><br />
<%= f.text_area :content %>
</div>
<div class="actions">
<%= f.submit %>
</div>
<% end %>
我想使用下面的表单代码:
<form>
<fieldset>
<legend>Start posting</legend>
<label>Name</label>
<input class="span10" type="text" placeholder="Name: ">
<label>Content</label>
<input class="span10" type="text" placeholder="Content: ">
<textarea rows="10"></textarea>
<button type="submit" class="btn">Submit</button>
</fieldset>
</form>
问题:如何使用 Bootstrap 版本的表单代码?
我尝试过类似的东西..
<input class="span10" type="text" name="@post.name" placeholder="Type in name: ">
<button type="submit" class="btn">Submit</button>
但这似乎不起作用。我认为 Bootstrap 提交按钮没有指向正确的方向,所以我也尝试了以下操作:
<input class="span10" type="text" name="@post.name" placeholder="Type in name: ">
<%= form_for(@post) do |f| %>
<%= f.submit %>
<% end %>
有人可以帮我吗?我感谢您的帮助!