在我的新Rails项目中,我需要访问我的旧数据库。因此,我创建了一些旧模型。
我在照片和评论之间有一个多态关联(commentable_id和commentable_type)

当我打电话

旧版::: Photo.last.comments

它不起作用,因为commentable_type是'Photo'而不是'LegcayPhoto'。

SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = $1 AND "comments"."commentable_type" = $2  [["commentable_id", 123], ["commentable_type", "Legacy::Photo"]]

legacy / photo.rb
module Legacy
  class Photo < ActiveRecord::Base
    establish_connection "legacy_#{Rails.env}"
    belongs_to :user, :class_name => 'Legacy::User' #works fine
    has_many :comments, :class_name => 'Legacy::Comment', :as => :commentable
  end
end

legacy / comment.rb
module Legacy
  class Comment < ActiveRecord::Base
    establish_connection "legacy_#{Rails.env}"
    #?? belongs_to :commentable,  :polymorphic => true
  end
end

我在legacy / comments.rb中也有问题。
有没有一种方法可以为belongs_to添加 namespace ::commentable,:polymorphic => true?

最佳答案

也许这不是最理想的方法,但是您可以轻松定义一个返回ActiveRecord查询的方法,该方法模仿has_many返回的内容,而不是建立has_many关联:

module Legacy
  class Photo < ActiveRecord::Base
    establish_connection "legacy_#{Rails.env}"
    belongs_to :user, :class_name => 'Legacy::User' #works fine

    def comments
      Comment.where("commentable_type='LegacyPhoto' AND commentable_id=?", self.id)
    end
  end
end

现在,您仍然可以说诸如此类的内容:
Legacy::Photo.comments.where(created_at > 1.day.ago)

而且仍然可以使用。

09-25 19:47