使用 kaminari 对缩略图进行分页
我必须在侧边栏中编写下面的代码。
- @apartment.assets.each 做 |asset| %li %a{:href => “#”} = image_tag(asset.image.url(:thumb))
这会生成公寓的所有(拇指)图像,并单击原始图像。我的想法是显示最多 10 个,并带有一些漂亮的分页 gem kaminari。
我找不到任何与 kaminari 存在 has_many 关系的代码/howto 示例。有人出主意吗?
I have to code below in a sidebar.
- @apartment.assets.each do |asset|
%li
%a{:href => "#"}
= image_tag(asset.image.url(:thumb))
This generates all the (thumb) images of an apartment with click to the original image. My idea this to show max 10 and with some nice pagination gem kaminari.
I could not find any code/howto examples of has_many relationships with kaminari. Someone ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试:
对 kaminari 不太了解,对 Haml 也不太了解,但它可以工作:-)
Try:
Don't know much about kaminari and don't know much about Haml, but it could work :-)