我在indexController中构建了一个Zend Paginator。在前端,列出了每页20个类别,但我还有一个下拉列表,必须列出所有主要类别。有没有办法使用相同的查询?这是我到目前为止所尝试的:
$query = $categories->select()
->where($status)
->where($sq)
->order($this->view->sortoptions->by . ' ' . $this->view->sortoptions->order);
$this->view->categories = $categories->paginate($query->where($cat), $this->view->LayoutSettings->pagination->itemsperpage , $page);
$this->view->categoriesall = $categories->fetchAll($query->where("parent = 0")); // we get this for the categories listing in the dropdown
** $ status和$ sq是过滤参数(例如,parent = 0)
答案 0 :(得分:0)
你必须执行查询,因为zend paginator不会获取所有记录 - 它一次只能获取$itemsperpage
个记录数!