看起来 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
谁能建议我如何为此编写分页?谢谢。