我有一个去年运行的 Fantasy Football League Rails 应用程序,现在是时候在赛季开始前重新启动它了。我清除了数据库并执行了“rake db:migrate”,这样我就可以从头开始重新启动应用程序。登录页面正常,但是当用户尝试使用 restful_authentication“注册”时,我在 log/production.log 中收到以下错误:
NoMethodError (undefined method `make_activation_code' for #<User:0xb7743490>):
/vendor/rails/activerecord/lib/active_record/attribute_methods.rb:256:in `method_missing'
/vendor/rails/activerecord/lib/../../activesupport/lib/active_support/callbacks.rb:173:in `send'
/vendor/rails/activerecord/lib/../../activesupport/lib/active_support/callbacks.rb:173:in `evaluate_method'
/vendor/rails/activerecord/lib/../../activesupport/lib/active_support/callbacks.rb:161:in `call'
以下是我的 user.rb 类的一些片段:
require 'digest/sha1'
require 'gravtastic'
class User < ActiveRecord::Base
include Authentication
include Authentication::ByPassword
include Authentication::ByCookieToken
# has_one :division
has_and_belongs_to_many :divisions
has_gravatar
validates_presence_of :login
validates_length_of :login, :within => 3..40
validates_uniqueness_of :login, :case_sensitive => false
validates_format_of :login, :with => RE_LOGIN_OK, :message => MSG_LOGIN_BAD
validates_presence_of :team_name
validates_length_of :team_name, :within => 3..40
validates_uniqueness_of :team_name, :case_sensitive => false
# validates_format_of :name, :with => RE_NAME_OK, :message => MSG_NAME_BAD, :allow_nil => true
# validates_length_of :name, :maximum => 100
validates_presence_of :email
validates_length_of :email, :within => 6..100 #r@a.wk
validates_uniqueness_of :email, :case_sensitive => false
validates_format_of :email, :with => RE_EMAIL_OK, :message => MSG_EMAIL_BAD
before_create :make_activation_code
# HACK HACK HACK -- how to do attr_accessible from here?
# prevents a user from submitting a crafted form that bypasses activation
# anything else you want your user to change should be added here.
attr_accessible :login, :email, :team_name, :password, :password_confirmation
我的 user.rb 的底部:
protected
def make_activation_code
self.activation_code = self.class.make_token
end
def make_password_reset_code
self.reset_password_code = Digest::SHA1.hexdigest( Time.now.to_s.split(//).sort_by {rand}.join )
end
make_activation_code 是在 User 类中定义的,activation_code 是在迁移中创建的,所以我不明白为什么它是未定义的。