Rails 嵌套资源在另一个上下文中可用
我计划拥有带有嵌套图像的画廊,因此图像属于画廊。然后,我希望图像有一个布尔选项来确定特定图像是否显示在首页上。使用布尔属性设置嵌套资源很简单,但我还没有弄清楚如何访问该属性设置为 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 Image 类上创建一个范围,然后您可以将该范围链接到任何其他 activerecord 图像列表:
Create a scope on the Image class and then you can chain that scope onto any other activerecord list of images: