Zend中的分页

时间:2010-02-20 05:06:43

标签: zend-framework

我正在尝试创建分页。所以我创建了一个'pagination.phtml '并将其存储在'views / scripts / '中 并在我的 index.phtml ' $ this-> paginationControl($ this-> paginator,'Sliding','pagination.phtml')中添加给定的行;。

pagination.phtml代码在这里

<?php if ($this->pageCount): ?> 
<div class="paginationControl"> 
 <!-- Previous page link --> 
<?php if (isset($this->previous)): ?> 
 <a href="<?php echo $this->url(array('page' => $this->previous)); ?>"> 
 Previous 
  </a> <span class="bar"> | </span> 
  <?php else: ?> 
  <span class="disabled"> Previous</span> <span class="bar"> | </span> 
    pagesInRange as $ page):?&gt;   当前):?&gt;     url(array('page'=&gt; $ page)); ?&gt;“中&GT;                 |           |         下一步)):?&gt;   url(array('page'=&gt; $ this-&gt; next)); ?&gt;“中&GT;     下一个         下一个      

我的记录包含60个项目,每页记录设置为10个 但只显示前10个项目,不显示下一个 - 前一个链接。如何解决? 。 期待回复..

2 个答案:

答案 0 :(得分:0)

您是否检查了此post。也许它会给你一些线索。

答案 1 :(得分:0)

尝试打印“$ this-&gt; paginator”并检查您获得了多少记录。