1

我正在尝试对模型及其关联标签执行多列搜索。我正在使用 metawhere 并为此充当可标记的角色。基本上我有一个带有标题和正文的模型,其中有一定数量的带有名称的标签。我一直在尝试使用 metawhere 设置此查询,但是当我尝试加入模型的标签时它从不返回任何结果。我有一个名为“str”的变量,用于搜索具有以下内容的 Post 模型...

Post.where(:title.matches % '#{str}%' | :body.matches % '#{str}%' | {:tags => [:name.matches % '#{str}%']}).joins(:tags)

生成以下sql ...

=> "SELECT `posts`.* FROM `posts` INNER JOIN `taggings` ON `posts`.`id` = `taggings`.`taggable_id` AND `taggings`.`taggable_type` = 'Post' INNER JOIN `tags` ON 'taggings.tagger_id IS NULL AND taggings.context = \\'tags\\'' WHERE (((`posts`.`title` LIKE '\#{str}%' OR `posts`.`body` LIKE '\#{str}%') OR `tags`.`name` LIKE '\#{str}%'))"

谁能指出我正确的方向?任何帮助将不胜感激。

4

1 回答 1

0

尝试:(假设启用了运算符重载)

.where((:title =~ str) | (:body =~ str) | {:tags => [:name =~ str]})
于 2011-02-09T14:38:42.727 回答