我尝试使用捆绑KnpPaginator在我的网站上创建分页。 在我的存储库中,我创建了一个查询:
public function getProductsOrderByDateDesc($id_category = null, $max = null){
$qb = $this->createQueryBuilder('p')
->orderBy('p.created_at', 'DESC');
if($max) {
$qb->setMaxResults($max);
}
if($id_category) {
if(is_array($id_category)){
$aIdCategory = implode("','",$id_category);
$qb->andWhere('p.category IN (:ids)')
->setParameter('ids', $aIdCategory);
}else{
$qb->andWhere('p.category = :category_id')
->setParameter('category_id', $id_category);
}
}
$query = $qb->getQuery();
return $query->getArrayResult();
}
在我的控制器中,我做了:
$repositoryProduct = $em->getRepository('ShopDesktopBundle:Product');
$aProducts = array();
$aProducts = $repositoryProduct->getProductsOrderByDateDesc($id);
$paginator = $this->get('knp_paginator');
$pagination = $paginator->paginate(
$aProducts,
$this->get('request')->query->get('page', 1),
3
);
return $this->render('ShopDesktopBundle:Category:category.html.twig',array(
'aProducts' => $aProducts,
'pagination' => $pagination
));
在视图中我只显示这个分页:
<div class="navigation">
{{ knp_pagination_render(pagination) }}
</div>
问题在于始终显示所有产品,而不仅仅是我示例的限制为3。 例如 : 我有9个产品,限制= 3,分页是正确的&#34; 1 2 3&#34;但对于每一页我都看到了所有9种产品 请帮帮我 ! Thx提前
答案 0 :(得分:0)
几乎正确,但您必须使用分页对象而不是&#39; aProducts&#39;。在您的视图中,使用以下代码:
{% for product in pagination %}
<tr {% if loop.index is odd %}class="color"{% endif %}>
<td>{{ product.id }}</td>
<td>{{ product.title }}</td>
</tr>
{% endfor %}
在文档中查看&#39;查看&#39;:https://github.com/KnpLabs/KnpPaginatorBundle
下的更多信息