Rails update_attribute



我遇到了以下问题。我有一个名为user的模型,它有一个名称为activated的列。我正试图在方法激活后更新该值?,但它给了我一个错误:验证失败:密码不能为空,密码太短(最少6个字符)这对我来说没有意义,因为我没有触摸密码字段!我只想更新激活的列。我把我认为相关的代码放在这里,但如果你认为你需要更多,只需问:)提前非常感谢!

型号:

attr_accessor :password
attr_accessible :name, :email, :password, :password_confirmation, :activated
has_many :sucu_votes
email_regex = /A[w+-.]+@[a-zd-.]+.[a-z]+z/i
validates :name,  :presence => true,
                                    :length => { :maximum => 50 }
validates :email, :presence => true,
                                    :format => {:with => email_regex},
                                    :uniqueness => { :case_sensitive => false }
validates :password, :presence => true,
                                         :length => { :within => 6..15 },
                                         :confirmation => true
before_save :encrypt_password
def activated?
    self.update_attributes!(:activated => true)
    return self.activated
end

激活该方法的控制器?称为

def activate
if request.get?
        user=User.find_by_id(params[:id])
        if user.activated?
            flash[:notice]="Your account has been activated"
            #redirect_to :controller => 'sessions', :action => 'new'
        else
            flash[:error]="We couldnt activate the account"
            redirect_to :controller => 'sessions', :action => 'new'
        end
    end
end

有两件事,第一,ruby约定是使用谓词方法只返回true或false,而不执行任何类似于更新记录的操作。这并不是你的问题,而是偏离了其他程序员的期望。其次,不要调用update_attributes,而是尝试调用:

update_attribute(:activated, true)

这应该跳过记录的其余回调

相关内容

  • 没有找到相关文章

最新更新