rails3 will_paginate哈希对象

时间:2010-11-25 20:32:43

标签: ruby-on-rails-3 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

有人可以建议我如何写这个分页吗? 感谢。

1 个答案:

答案 0 :(得分: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] %>