匹配 Rails (Activerecord) WHERE 条件中的任何内容
当没有参数传递给以下内容时,我希望能够选择所有文章。
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
怎么样:
How about: