我使用 KNP Paginator 添加了一个分页。除了为特定 ID 呈现页面的页面外,它运行良好。在我添加分页之前,此页面运行良好。功能是
public function orderDetailAction($id)
对于分页,我添加了请求。
/**
* Display order detail
*
*@Route("/order/{id}", name="requestitem_order")
*@Method("GET")
*/
public function orderDetailAction(Request $request, $id)
{
$em = $this->getDoctrine()->getManager()->getRepository('ECAInventoryBundle:RequestItem');
$query = $em->createQueryBuilder('r')
->innerJoin('r.item','i')
->select('i.name')
->addSelect('r.quantity')
->addSelect('i.id')
->addSelect('r.date')
->addSelect('r.remark')
->where('i.id = :ID')->setParameter('ID', $id)
->orderBy('r.date', 'DESC')
->getQuery();
$details = $query->getResult();
$paginator = $this->get('knp_paginator');
$result = $paginator->paginate(
$details,
$request->query->get('page', 1)/*page number*/,
5/*limit per page*/
);
$form = $this->createFormBuilder($details)
->add('id', TextType::class, array('attr' =>array('class' =>'form-control', 'style' =>'margin-bottom:15px')))
->add('name', TextType::class, array('attr' =>array('class' =>'form-control', 'style' =>'margin-bottom:15px')))
->add('quantity', TextType::class, array('attr' =>array('class' =>'form-control', 'style' =>'margin-bottom:15px')))
->add('date', DateType::class, array('attr' =>array('class' =>'form-control', 'style' =>'margin-bottom:15px')))
->add('remark', TextareaType::class, array('attr' =>array('class' =>'form-control', 'style' =>'margin-bottom:15px', 'required' => false),'empty_data' => null))
->getForm();
return $this->render('requestitem/order_details.html.twig', array('details'=> $details, 'form' => $form->createView()));
}
树枝文件是
{% extends 'base.html.twig' %}
{% block body %}
{% set Name = '' %}
{% for detail in details %}
{% set Name = detail.name %}
{% endfor %}
<h1>Detail</h1>
<h2>{{Name}}</h2>
<table class="table table-striped">
<thead>
<tr>
<th scope="row">Quantity</th>
<th scope="row">Date</th>
<th scope="row">Remark</th>
</tr>
</thead>
<tbody>
{% for detail in details %}
<tr>
<td>{{ detail.quantity}}</td>
<td>{{ detail.date|date('d M Y') }}</td>
<td>{{ detail.remark}}</td>
</tr>
{% endfor %}
</tbody>
</table>
{# display navigation #}
<div class="navigation text-center">
{{ knp_pagination_render(details) }}
</div>
<hr />
<a href="{{ path('requestitem_balance')}}" class="btn btn-default">Back to Balance</a>
{% endblock %}
我有以下错误
类型错误:传递给 Knp\Bundle\PaginatorBundle\Twig\Extension\PaginationExtension::render() 的参数 2 必须是 Knp\Bundle\PaginatorBundle\Pagination\SlidingPagination 的实例,给定数组,在 C:\xampp\htdocs\ 中调用库存\var\cache\dev\twig\60\60f10f12ae3f80d30f6ac9425ed3eadb7f6a850a4574537165108f4cd8dfd500.php 在第 107 行
控制器路由是@Route("/order/{id}" 分页器使用这种路由?page=2。不知道是不是这个问题。
我该如何解决?