2

我想设置一个“创建帐户”页面。我使用的宝石是:

  • 导轨 (3.2.3)
  • simple_form (2.0.1)
  • 全能身份
  • twitter-bootstrap-rails (2.0.6)
  • mongoid (2.2.3)

表格如下所示:

= simple_form_for @identity, :url => '/auth/identity/register', :html => { :class =>    'form-horizontal' } do |f| 
  = f.input :name, :input_html => {:name => 'name'}
  = f.input :email, :input_html => {:name => 'email'}
  = f.input :password, :as => 'password', :input_html => {:name => 'password'} 
  = f.input :password_confirmation, :label => "Confirm Password", :as => 'password', :input_html => {:name => 'password_confirmation'} 
  .form-actions
    = f.button :submit, 'Sign Up', class: 'btn-primary'
    = link_to 'Cancel', root_path,  class: 'btn-danger'

对应的身份模型是

class Identity
  include Mongoid::Document
  include OmniAuth::Identity::Models::Mongoid
  field :name, :type => String
  field :email, :type => String
  field :password_digest, :type => String

  validates_presence_of :name, :email
  validates_uniqueness_of :email
  validates_format_of :email, :with => /^[-a-z0-9_+\.]+\@([-a-z0-9]+\.)+[a-z0-9]{2,4}$/i
end

如果我没有填写表单的任何文本字段,然后单击“注册”,则表单不会显示来自验证器的任何错误消息,而是将我重定向到主页!

我是否遗漏了一些明显的东西,或者这可能是我使用的 gem 版本的问题?我当然可以使用 twitter-bootstrap 标记在没有 simple_form 的情况下实现相同的表单,但我更喜欢这种方式。

4

2 回答 2

1

我处于类似的情况,simple_form 确实验证了另一个模型中的字段,但不在用户模型中。

无论如何,我注意到您没有:

validates_presence_of :password

在你的模型中。也许 mongoid 可以使您免于执行该步骤?我不知道 mongoid,但对我来说,这就是验证该字段不是空白的魔力。对于为我工作的领域,我有这个:

validates_presence_of :title, :localeLanguage, :message => "can't be blank"
于 2012-04-30T13:22:36.273 回答
1

我遇到了这个问题,我通过将它包含在我所有的简单表单中来修复它,然后我发现它可以正确呈现:

<%= f.error_notification %>
于 2012-06-22T10:57:51.810 回答