可能重复:
验证接受总是失败
我在 Rails 3.2 应用程序中使用Simple Form and Devise gems。在用户注册视图中,我添加了一个复选框,供用户检查是否同意应用程序的使用条款。然而,现在,即使它被选中,代码也没有意识到它已经被选中,所以它给出了这个必填字段不被接受的错误消息。
这可能与我content_for
根据这个问题以表单实现代码有关。
用户型号:
class User < ActiveRecord::Base
devise :database_authenticatable, :registerable,
:recoverable, :rememberable, :trackable, :validatable, :omniauthable
validates :agree_to_terms, :acceptance => true
end
风景:
<%= content_for(:the_links) do %>
I agree to the <%= link_to "Terms of Service", terms_path,:remote => true %>
and <%=link_to "Privacy Policy", privacy_path, :remote => true%>
<% end %>
<%= simple_form_for(resource, :as => resource_name, :url => registration_path(resource_name)) do |f| %>
<%= f.input :agree_to_terms, :as => :boolean, :inline_label => content_for(:the_links), :label => false %>
<%= f.button :submit, "Sign up", :class =>"btn btn-success btn-large" %>
<% end %>
<%= render "devise/shared/links" %>