匹配 Rails (Activerecord) WHERE 条件中的任何内容

发布于 2024-11-28 02:35:15 字数 338 浏览 0 评论 0原文

当没有参数传递给以下内容时,我希望能够选择所有文章。

class Article < ActiveRecord::Base

  named_scope :filter_by, lambda 
  { 
    |*args| {:conditions => [(args.first || 'id') + " = ?", (args.second || '*is_anything*')]} 
  }

end

例如, Article.filter_by() 应与 Article.all 相同。实现这一目标的最简单方法是什么?

When no parameters are passed to the following I want to be able to select all Articles.

class Article < ActiveRecord::Base

  named_scope :filter_by, lambda 
  { 
    |*args| {:conditions => [(args.first || 'id') + " = ?", (args.second || '*is_anything*')]} 
  }

end

For example, Article.filter_by() should be the same as Article.all . What is the simplest way to achieve this?

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

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

发布评论

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

评论(1

ぶ宁プ宁ぶ 2024-12-05 02:35:15

怎么样:

  named_scope :filter_by, lambda 
  { 
    |*args| {:conditions => (args.nil? || args.empty?) ? nil : [(args.first || 'id') + " = ?", (args.second || '*is_anything*')]} 
  }

How about:

  named_scope :filter_by, lambda 
  { 
    |*args| {:conditions => (args.nil? || args.empty?) ? nil : [(args.first || 'id') + " = ?", (args.second || '*is_anything*')]} 
  }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文