1

我正在使用 Rails 3.2,并且正在尝试构建一个表单来让用户更新其数据。但是,如果用户不想更改其密码,则可以通过将字段留空来进行。

这是我的表单代码:

<%= form_for(@user) do |f| %>

    <%= f.label :name %>
    <%= f.text_field :name %>

    <%= f.label :email %>
    <%= f.text_field :email %>

    <%= f.label :new_password %>
    <%= f.password_field :password %>

    <%= f.label :password_confirmation, "Confirm password" %>
    <%= f.password_field :password_confirmation %>

    <%= f.submit "Save changes" %>  

<% end %>

这是我在用户控制器中的方法更新:

def update
    if @user.update_attributes(params[:user])
        sign_in @user
        flash[:success] = "Profile updated"
        redirect_to @user
    else
        render 'edit'
    end
end

当我将密码字段留空时,我总是会收到提示密码错误的消息。

谢谢

- -更新 - -

这是我的用户模型:

class User < ActiveRecord::Base

    attr_accessible :name, :email, :password, :password_confirmation, :team_id, :updating_password

before_save { |user| user.email = email.downcase }
before_save :create_remember_token

validates :name, presence: true, length: { maximum: 50 }
VALID_EMAIL_REGEX = /\A[\w+\-.]+@[a-z\d\-.]+\.[a-z]+\z/i
validates :email, presence:   true,
                format:     { with: VALID_EMAIL_REGEX },
                uniqueness: { case_sensitive: false} 
validates :password, presence: should_validate_password? , length: { minimum: 6 }
validates :password_confirmation, presence: should_validate_password?

def should_validate_password?
    updating_password || new_record?
end 

def create_remember_token
    self.remember_token = SecureRandom.urlsafe_base64
end
4

1 回答 1

0

我认为这个问题在这里有一个很好的答案:在 Rails 3 中,当我不尝试更新密码时,如何跳过密码字段的验证?

我会重复一遍,但给出的答案非常好。还指向有关该主题的 railscast。

于 2012-08-01T15:29:50.730 回答