私のコントローラーはドクトリンを使用しており、knpページ付けバンドルのpaginateメソッドを呼び出しています。コードは次のとおりです。
$em = $this->get('doctrine.orm.entity_manager');
$query = $em->createQueryBuilder()->add('select', 'a')
->add('from', 'Acme\TaskBundle\Entity\Product a')->getQuery()->getResult();
$paginator = $this->get('knp_paginator');
$pagination = $paginator->paginate(
$query,
$this->get('request')->query->get('page', 1)/*page number*/,
5/*limit per page*/
);
return $this->render('AcmeTaskBundle:Default:index.html.twig', array(
'pagination' => $pagination,
));
ビューは単にページネーションデータを表すだけです
<table>
<tr>
{# sorting of properties based on query components #}
<th>{{ pagination.sortable('Id', 'a.id')|raw }}</th>
<th>{{ pagination.sortable('Name', 'a.name')|raw }}</th>
<th>{{ pagination.sortable('Price', 'a.price')|raw }}</th>
<th>{{ pagination.sortable('Description', 'a.description')|raw }}</th>
</tr>
{# table body #}
{% for Product in pagination %}
<tr {% if loop.index is odd %}class="color"{% endif %}>
<td>{{ Product.id }}</td>
<td>{{ Product.name }}</td>
<td>{{ Product.price }}</td>
<td>{{ Product.description }}</td>
</tr>
{% endfor %}
</table>
{# display navigation #}
<div class="navigation">
{{ pagination.render()|raw }}
</div>
ルーティングは
index_entries:
pattern: /index/
defaults: { _controller: AcmeTaskBundle:Default:index }
ページ付けを使用してすべてのテーブルデータを取得していますが、要素をクリックしてもデータを並べ替えることができません。paginatorconfigは
protected $defaultOptions = array(
'pageParameterName' => 'page',
'sortFieldParameterName' => 'sort',
'sortDirectionParameterName' => 'direction',
'distinct' => true
);