我有
class User::AuthInfo < ActiveRecord::Base
self.table_name = "auth_infos"
belongs_to :authenticable, polymorphic: true
end
和
class User::Customer < ActiveRecord::Base
self.table_name = "customers"
has_one :auth_info, as: :authenticable
end
我希望通过这样做:
User::Customer.last.auth_info
输出应该是auth_info
的记录。但我看到查询错误:
SELECT `auth_infos`.* FROM `auth_infos` WHERE `auth_infos`.`customer_id` = 8 LIMIT 1
我的表格有authenticable_id
和authenticable_type,
文档告诉我创建的字段,以便进行多态工作。
有什么问题?为什么使用customer_id
代替authenticable_id
?
编辑:
这里是两个表的架构:
编辑:
我确实省略了一件事,因为我认为它并不重要,但它似乎导致问题,在客户模型上我使用了一个问题:
include User::Loggable
以下是Concercn的内容:
module User::Loggable
extend ActiveSupport::Concern
included do
has_one :auth_info
end
def login ip_address
@session_ip = ip_address
create_session_token
self.save
end
def renew_session
@session_token_expire = renew_session
end
def destroy_session
self.session_token = nil
self.session_token_expire = nil
self.save
end
def verify_session! (token, ip)
if (ip == session_ip && token = session_token && session_token_expire.to_i > Time.now.to_i)
true
else
false
end
end
private
def new_token( string = "" )
...
end
def digest_token token
..
end
def register_user
a = User.new email_address: self.email_address, kind: self.class.name
a.save
end
def create_session_token
@session_token = digest_token(new_token())
@session_token_expire = (Time.now + AUTHENTICATION[::Rails.env]["expiration"]["session"].hour.to_i).strftime("%Y-%m-%d %H:%M:%S")
end
def renew_session
session_token_expire = (Time.now + AUTHENTICATION[::Rails.env]["expiration"]["session"] + 3.hour).strftime("%Y-%m-%d %H:%M:%S")
end
module ClassMethods
def authenticated_account
current_account ||= self.find_by_session_token() if CbsoltCore::App::Environment.account_session_token && CbsoltCore::App::Environment.account_session_token != ""
# mettere parte API token
current_account
end
end
end
我已经推荐了我的模块中关注的内容,并且它有效。为什么呢?
答案 0 :(得分:1)
您的担忧是压倒一切,包括客户模式。
included do
has_one :auth_info, as: :authenticable
end
在内部或实际模型中提供多态关联。