如何显示最近发生日期的帖子?

发布于 2024-12-09 22:18:38 字数 76 浏览 1 评论 0原文

我正在建立一个网站,每周显示将要发生的事情的简历。 我的问题是:管理员可以在两个月后发布帖子,我如何限制这些帖子在实际发生的那周之前显示?

I am building a site that displays a weekly resume of what will be going on.
My problem is: an admin can place a post two months from now, how can I restrict those posts from showing up until the week it would actually happen?

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

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

发布评论

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

评论(1

爱要勇敢去追 2024-12-16 22:18:38

使用一个或两个范围:

class Post < ActiveRecord::Base
  scope :future, lambda { where('ends_at > ?', Time.zone.now') }
  scope :up_to, lambda { |time| where('starts_at < ?', time) }
end

@coming_up_posts = Post.future.up_to(7.days.from_now)

Use a scope or two:

class Post < ActiveRecord::Base
  scope :future, lambda { where('ends_at > ?', Time.zone.now') }
  scope :up_to, lambda { |time| where('starts_at < ?', time) }
end

@coming_up_posts = Post.future.up_to(7.days.from_now)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文