1) 如何使用简单的表单和 twitter-bootstrap-rails 构建表单,以便它们显示很酷的引导样式验证错误?
2) 如何在 twitter-bootstrap-rails 中构建表单,以便它们显示很酷的引导样式验证错误?
3) 我尝试使用 simple_form 构建表单。但是验证没有显示任何错误消息。我正在尝试在用户模型和表单上添加验证Devise
技术:Rails 3.2.7.rc1、1.9.2、twitter-ootstrap-rails 2.1.1、simple-form 2.0.2
代码:
<%= simple_form_for(resource, :as => resource_name, :url => registration_path(resource_name), :html => {:class => 'form-vertical' }) do |f| %>
<%= f.error_notification %>
<%= f.input :fname, :placeholder=>"First name", :input_html => { :class => "enroll_input span4"} %>
<%= f.input :lname, :placeholder=>"Last name", :input_html => { :class => "enroll_input span4"} %>
<%= f.input :email,:placeholder=>"Email",:input_html => { :class => "enroll_input span4"} %>
<%= f.input :password, :placeholder=>"Password",:input_html => { :class => "enroll_input span4"} %>
<div class="enroll_button"> <%= f.submit " Enroll ", :class=>"btn btn-primary pull-right btn-large" %></div>
<% end %>
我不确定这是否不起作用或jquery
不起作用。