Rails 在多个表上acts_as_taggable_

发布于 2024-08-16 04:47:59 字数 278 浏览 4 评论 0原文

我刚刚安装了 acts_as_taggable_on 插件,我正在尝试执行

@products = Product.find(:all, :include => [:points, :tags], :conditions => '...', :tags => ; 'tag1, tag2')

如您所见,我想将 find() 方法与其他 2 个模型(产品、点、标签)一起使用。我想在 :condition => 中使用所有 3 个模型{} 属性。

有可能吗。我应该怎么办?

I just installed acts_as_taggable_on plugin and I'm trying to do

@products = Product.find(:all, :include => [:points, :tags], :conditions => '...', :tags => 'tag1, tag2')

As you can see I would like to use find() method with 2 other models (Product,Point,Tag). I would like to use all 3 models in a :condition => {} attribute.

Is it posible. What should I do?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

梦太阳 2024-08-23 04:47:59

为什么不直接合并结果呢?

@results = []
%W(Product Point Tag).each do |model|
  @results += model.constantize.find(:all, :include => [:points, :tags], :conditions => '...', :tags => 'tag1, tag2')
end

Why don't you just merge the results?

@results = []
%W(Product Point Tag).each do |model|
  @results += model.constantize.find(:all, :include => [:points, :tags], :conditions => '...', :tags => 'tag1, tag2')
end
看海 2024-08-23 04:47:59

我认为您问的是如何在条件哈希中使用多个模型进行查找。像这样的东西应该有效。

@products = Product.find(:all, :include => [:points, :tags], :conditions => {:points=>{:value=>5}, :tags=>['tag1','tag2']})

I think you're asking how to use multiple models in a conditions hash for find. Something like this should work.

@products = Product.find(:all, :include => [:points, :tags], :conditions => {:points=>{:value=>5}, :tags=>['tag1','tag2']})
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文