3

看起来 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

谁能建议我如何为此编写分页?谢谢。

4

1 回答 1

6

在您的控制器中:

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 

  # paginate the keys of the hash instead of the hash itself
  @article_keys = @articles.keys.paginate
end    

在您看来:

<% @article_keys.each do |k| %>
  <%= @articles[k] %>
于 2010-11-25T20:39:34.603 回答