我是 Rails 新手,我尝试使用匿名用户进行简单的身份验证。我按照本教程进行操作,但出现此错误:
undefined method `find_or_initialize_by_token'
这是我的 AnonymousUser 模型:
class AnonymousUser < User
ACCESSIBLE_ATTRS = [:name, :email]
attr_accessible *ACCESSIBLE_ATTRS, :type, :token, as: :registrant
def register(params)
params = params.merge(type: 'User', token: nil)
self.update_attributes(params, as: :registrant)
end
end
这是我的用户模型:
class User < ActiveRecord::Base
devise :database_authenticatable, :confirmable, :lockable, :recoverable,
:rememberable, :registerable, :trackable, :timeoutable, :validatable,
:token_authenticatable
attr_accessible :email, :password, :password_confirmation, :remember_me
end
最后一个重要的是我的ApplicationController有这个错误:
class ApplicationController < ActionController::Base
protect_from_forgery
def authenticate_user!(*args)
current_user.present? || super(*args)
end
def current_user
super || AnonymousUser.find_or_initialize_by_token(anonymous_user_token).tap do |user|
user.save(validate: false) if user.new_record?
end
end
private
def anonymous_user_token
session[:user_token] ||= SecureRandom.hex(8)
end
end
有人告诉我,如果 AnonymousUser 用户继承自 User 然后 AnonymousUser 有方法调用find_or_initialize_by_token
,但我不知道如何修复它。