当我的新闻页面已满时,如何添加新页面(FOR)?

时间:2014-07-28 12:15:22

标签: ruby-on-rails ruby controller

当我的页面已满时如何添加新页面(ROR)?我在Heroku上卸载了我的应用程序。但我没有数据库。例如,我有这个页面:http://priroda-site.tk/mammal/index。我每天都会添加新帖子。控制器中定义的是什么页面自动创建?我每页应该有6个帖子。

Stucture

post
post
post
post
post
post

1 2 3 4 5 6 7 8 9 10 ...

我的帖子结构

html.erb

  <!-- bee -->
        <div class="post_box">
          <div class="date_box">
            <p>28 JULY 2014</p>
          </div> <!-- end of date box -->

          <div class="post_body">

            <a href="#"><%= image_tag "fakts/bee.jpg", :size=>"470x320" %></a>
            <p>
            </p>
            <br>
            <br>
          </div> <!-- end of post body -->
        </div> <!-- end of a post -->

1 个答案:

答案 0 :(得分:1)

您正在寻找的是分页。在Rails中有很多解决方案,我倾向于使用will_paginate