1
這一直在踢我的屁股整個早晨。Michael Hartl的Rails 3教程:has_password問題?方法在第7章
現在,我剛剛開始邁克爾·哈特的優秀的第7.2.4章第3章教程,我遇到了一些問題。本節首先在Rails控制檯沙箱中快速檢查has_password?
方法。下面是我在已經輸入:
ruby-1.9.2-p180 :001 > User
=> User(id: integer, name: string, email: string, created_at: datetime, updated
updated_at: datetime, encrypted_password: string, salt: string)
ruby-1.9.2-p180 :002 > User.create(:name => "John Pavlick", :email => "jmpavlick
@gmail.com", :password => "foobar", :password_confirmation => "foobar")
=> #<User id: nil, name: "John Pavlick", email: "[email protected]", created_
at: nil, updated_at: nil, encrypted_password: nil, salt: nil>
ruby-1.9.2-p180 :003 > user = User.find_by_email("[email protected]"
ruby-1.9.2-p180 :004?> )
=> #<User id: 1, name: "John Pavlick", email: "[email protected]", created_at
: "2011-04-15 15:11:46", updated_at: "2011-04-15 15:11:46", encrypted_password:
nil, salt: nil>
ruby-1.9.2-p180 :005 > user.has_password?("foobar")
=> false
這應該返回true
。
這裏是我的user.rb
型號:
class User < ActiveRecord::Base
attr_accessor :password
attr_accessible :name, :email, :password, :password_confirmation
email_regex = /^[\w+\-.][email protected][a-z\d\-.]+\.[a-z]+$/i
validates :name, :presence => true,
:length => { :maximum => 50 }
validates :email, :presence => true,
:format => { :with => email_regex },
:uniqueness => { :case_sensitive => false }
# Automatically create the virtual attribute 'password confirmation'
validates :password, :presence => true,
:confirmation => true,
:length => { :within => 6..40 }
before_save :encrypt_password
# Return true if the user's password matches the submitted password
def has_password?(submitted_password)
encrypted_password == encrypt(submitted_password)
end
private
def encrypt_password
self.salt = make_salt if new_record?
self.encrypted_password = encrypt(password)
end
def encrypt(string)
secure_hash("#{salt}--#{string}")
end
def make_salt
secure_hash("#{Time.now.utc}--#{password}")
end
def secure_hash(string)
Digest::SHA2.hexdigest(string)
end
end
我RSpec
測試全部通過完美的,而據我所知,我在書逐字一切已經編碼 - 我甚至複製/粘貼一些代碼來確保。我認爲沒有任何理由可以解決這個問題,所以任何幫助都將是一個救星。
這裏的書的鏈接,在線:[link]
非常感謝!結果我早些時候用數據庫中的信息創建了一條記錄 - 當我在':name'和':email:'中使用不同的信息時,它完美的工作!再次感謝! – eckza 2011-04-18 17:32:21
添加到DGM所說的內容中,您應該能夠運行'rake db:reset',然後嘗試創建記錄。 (我認爲。) – Tass 2011-04-18 17:35:10