我正在阅读Beginning Rails 3。这本书创建了一个用户可以发布文章的项目。现在在 Article 对象中,他们创建了 3 个作用域,如下所示:
scope :published, where("articles.published_at IS NOT NULL")
scope :draft, where("articles.published_at IS NULL")
scope :recent, lambda { published.where("articles.published_at > ?", 1.week.ago.to_date)}
现在最后一个lambda
函数我可以用这个语句替换它,scope
我得到相同的结果:
scope :recent, where("published_at > ?", 1.week.ago.to_date)
在这里使用 lambda 有什么好处?