0

バンドル KnpPaginator を使用して、Web サイトにページネーションを作成しようとしました。私のリポジトリでクエリを作成します:

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、ページ付けは正しい「1 2 3」ですが、すべてのページで 9 つの製品すべてが表示されます。ヘルプ私にお願いします!事前にThx

4

1 に答える 1

0

ほぼ正しいですが、「aProducts」の代わりにページネーション オブジェクトを使用する必要があります。ビューで、次のコードを使用します。

{% for product in pagination %}
<tr {% if loop.index is odd %}class="color"{% endif %}>
    <td>{{ product.id }}</td>
    <td>{{ product.title }}</td>
</tr>
{% endfor %}

詳細については、「表示」の下のドキュメントを参照してください: https://github.com/KnpLabs/KnpPaginatorBundle

于 2015-03-27T09:25:14.210 に答える