我在应用程序中使用这个包。控制器是显示搜索表单、获取响应并对其进行处理的典型控制器(示例):
public function indexAction()
{
$request = $this->getRequest();
$example = new Example();
$form = $this->createForm(new ExampleFindType(), $example, array(
'action' => $this->generateUrl('example_find'),
'method' => 'POST',
));
$form->handleRequest($request);
if ($form->isValid())
{
$em = $this->getDoctrine()->getManager();
$examples = $em->getRepository('ApplicationExampleBundle:Example')
->find_by_fields($example);
$paginator = $this->get('knp_paginator');
$pagination = $paginator->paginate(
$examples,
$this->get('request')->query->get('p', 1),
20
);
return $this->render('ApplicationExampleBundle:Default:searchResults.html.twig',
array('pagination' => $pagination));
}
return $this->render('ApplicationExampleBundle:Default:index.html.twig',
array('form' => $form->createView(),
));
}
当我执行搜索时,我正确地看到了结果列表和分页器。当我按到下一页的链接时出现问题。链接 ID 生成良好,URL 以“?p=2”结尾,但似乎没有重新发送表单 POST 数据,因为它将我发送到搜索表单页面($form->isValid() 为 false)。
如果我将表单方法从 POST 更改为 GET 并在 URL 中传递参数:
$form = $this->createForm(new ExampleFindType(), $example, array(
'action' => $this->generateUrl('example_find'),
'method' => 'GET',
));
分页器工作完美。
难道我做错了什么?可以使用 POST 表单吗?
我已经搜索了一个答案,但是我看到的所有 KnpPagintor 控制器示例都没有生成带有表单的查询,而且这个问题对我没有帮助。
谢谢。