我有以下型号:
class Merchant
acts_as_authentic
has_one :store
accepts_nested_attributes_for :store
end
class Store
belongs_to :merchant
end
我正在使用 authlogic_oauth gem 进行 Twitter 身份验证。注册时,我保存了 Merchant 和 Store 模型。如果我禁用 oauth 身份验证,两个模型都会保存。当我启用 oauth 身份验证时,只会保存 Merchant 实例。
在花了一些时间查看 authlogic_oauth gem 代码后,我认为找到了罪魁祸首。authlogic_oauth gem 在 oauth 调用期间将 ActiveRecord 属性存储在会话中。但它不存储关联的属性。
# authlogic_oauth : lib/authlogic_oauth/acts_as_authentic.rb
def save(perform_validation = true, &block)
if perform_validation && block_given? && redirecting_to_oauth_server?
# My comment: Any nested attributes are not saved in the session
session_class.controller.session[:authlogic_oauth_attributes] = attributes.reject!{|k, v| v.blank?}
# some code
end
# some code
end
我可以破解 gem 代码,但我想知道是否有更好的解决方案。