2

我正在阅读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 有什么好处?

4

1 回答 1

10

如果不使用lambda时间1.week.ago将在应用程序启动时计算并缓存。因此,即使您的应用程序已经运行了几个月,它仍然会指向应用程序开始前 1 周的时间。

您在开发环境中不会注意到这一点,因为每次请求都会重新加载应用程序代码。使用 lambda,即使在生产环境中,您也可以确保每次调用您的范围时都会重新计算它。

于 2012-07-08T17:21:35.483 回答