Rails 嵌套资源在另一个上下文中可用

发布于 2024-12-03 15:04:42 字数 158 浏览 2 评论 0原文

我计划拥有带有嵌套图像的画廊,因此图像属于画廊。然后,我希望图像有一个布尔选项来确定特定图像是否显示在首页上。使用布尔属性设置嵌套资源很简单,但我还没有弄清楚如何访问该属性设置为 true 的所有图像。

迭代每个画廊和图像是做到这一点的唯一方法吗?在我看来,必须有更好的方法......

I plan on having galleries with nested images, so images belong in a gallery. I would then like images to have a Boolean option to determine whether or not a particular image shows up on the front page. Setting up a nested resource with a Boolean property is simple, but I haven't yet figured out how to access all images that have that property set to true.

Is iterating through each gallery and image the only way to do that? It seems to me there must be a better way...

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

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

发布评论

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

评论(1

一指流沙 2024-12-10 15:04:42

在 Image 类上创建一个范围,然后您可以将该范围链接到任何其他 activerecord 图像列表:

class Image
  scope :homepage, where(:appear_on_homepage => true)
end

@gallery.images.homepage # Just the relevant images

Create a scope on the Image class and then you can chain that scope onto any other activerecord list of images:

class Image
  scope :homepage, where(:appear_on_homepage => true)
end

@gallery.images.homepage # Just the relevant images
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文