我正在使用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
当我将密码的字段留空时,我总是收到错误密码的flash消息。
谢谢
--- --- UPDATE
这是我的用户模型:
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
答案 0 :(得分:0)
我认为这个问题有一个非常好的答案:In Rails 3, how can I skip validation of the password field when I'm not attempting to update the password?
我会重复一遍,但给出的答案非常好。同时指向关于主题的railscast。