3

我有以下型号:

class Person < ActiveRecord::Base
 has_many :images
 has_one :preference
end

class Image < ActiveRecord::Base
 belongs_to :person
end

class Preference < ActiveRecord::Base
 belongs_to :person
end

我正在尝试获取所有公开的图像,同时渴望加载拥有这些图像的人:

    Image.find(:all, :conditions =>  ["images.person_id = ? AND preferences.image_privacy = ?", user.id, PRIVACY_PUBLIC],
               :joins => [:person => :user_preference], :include => :person)

看来 Rails 不喜欢 :include (我相信是因为 :person 在 2 个模型中被引用)。这是我得到的错误(当我删除 :include 选项时它消失了):

“ActiveRecord::StatementInvalid: Mysql::Error: Not unique table/alias: 'people'”

我可以通过将实际的 JOIN 命令写为字符串并将其传递给 :include 选项来解决这个问题,但这不是 Rails-y,所以我希望有一种更简洁的方法来做到这一点。

任何帮助将非常感激。

谢谢!

4

4 回答 4

2

看起来您将其称为“首选项”,而不是 user_preferences。所以你的加入应该是:

:joins => [:person => :preference])
于 2009-09-29T14:05:14.933 回答
0

这可能是表别名的问题,rails doc 在表别名中有很多详细信息

此外,在此处发布 SQL 也会很有用。

于 2009-09-26T18:11:56.990 回答
0

你写了 :conditions => ["images.person_id", user.id] 并且你说你想加载图像和拥有这些图像的人。但看起来您正在加载属于一个人(而不是一组人)的图像,因为您只指定了一个 user.id。

我会这样做:

Person.find(user.id, :include => [:images, :preference], :conditions => ["preferences.image_privacy = ?", PRIVACY_PUBLIC])

它将加载人和他/她的图像。

可能我没有正确理解您的问题,因为我认为您想要做的事情对我来说似乎不合逻辑。

您可以尝试使用named_scope ,而不是使用条件

于 2009-09-29T14:23:23.227 回答
0

通过使用 JOIN,您可以主动包含 People 表,因此您不需要再次添加“include”。这应该有效:

  Image.find(:all, :conditions =>  ["images.person_id = ? AND preferences.image_privacy = ?", user.id, PRIVACY_PUBLIC],
           :joins => [:person => :user_preference])
于 2009-09-26T16:07:17.803 回答