Rails3 will_paginate 哈希对象
看起来 will_paginate 不支持对哈希对象进行分页。 我有一个文章列表,它基本上是我想要在页面上输出的 yaml 文件的集合。
def index
@articles = Dir["#{Rails.root}/blog_articles/*.yml"].inject({}) do |h, file|
h["#{File.basename(file, '.yml')}"] = YAML::load(File.open(file))
h
end
end
谁能建议我如何为此编写分页? 谢谢。
Looks like will_paginate dosen't support paginating a hash object.
I have a list of articles which is basically a collection of yaml files that i want to output on a page.
def index
@articles = Dir["#{Rails.root}/blog_articles/*.yml"].inject({}) do |h, file|
h["#{File.basename(file, '.yml')}"] = YAML::load(File.open(file))
h
end
end
Can anyone suggest me on how to write the pagination for this?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在您的控制器中:
在您的视图中:
In your controller:
In your views: