我正在尝试借助分页进行过滤。当我尝试执行该操作时,单击第二页中的第一页就可以了,它显示了初始结果,因此没有任何过滤器。它们都放在过滤器和显示器的同一路径中 这是我的控制器:
/**
* @Route("/", name="home")
*/
public function home(Request $request)
{
$property = new Property();
$searchForm = $this->createFormBuilder($property)
->add('type', EntityType::class, [
'class' => Type::class,
'choice_label' => 'name',
'mapped' => false,
'expanded' => true,
'multiple' => true,
'label' => false,
])
->add('filter', SubmitType::class, [
'attr' => [
'class' => 'btn btn-outline-dark btn-rounded waves-effect'
]
])
->getForm();
$searchForm -> handleRequest($request);
if ($searchForm->isSubmitted() && $searchForm->isValid()){
$type = $searchForm->get('type')->getData();
$search = $this->getDoctrine()->getRepository(Property::class)->findByType($type);
if (count($type) == 0) {
$search = $this->getDoctrine()->getRepository(Property::class)->findBy(['isSold' => 0]);
}
} else {
$search = $this->getDoctrine()->getRepository(Property::class)->findBy(['isSold' => 0]);
}
$paginator = $this->get('knp_paginator');
$result = $paginator->paginate(
$search,
$request->query->getInt('page', 1),
$request->query->getInt('limit', 10)
);
}
return $this->render('home/index.html.twig', [
'property' => $result,
'searchForm' => $searchForm->createView(),
'propertyCountByType' => $propertyCountByType,
]);
}
这是存储库中的查询:
public function findByType($type){
$query = $this->createQueryBuilder('p')
->andWhere('p.type IN (:type)')
->andWhere('p.isSold = 0')
->setParameter('type', $type)
->getQuery();
return $query->execute();
}
答案 0 :(得分:0)
问题是您执行了查询(实际上奇怪的是,分页器没有抱怨…………应该出现诸如“期望类型查询,得到了ArrayCollection”之类的错误。
分页器希望您传递一个Query
对象,然后分页器将根据请求中的参数用setMaxResults
和setFirstResult
“扩展”查询。
触发findBy
或findByType
时,结果为ArrayCollection
,因此此时分页已经“太晚”了。
也许我在这里遗漏了一些东西,您可以仔细检查一下您提供的代码是否确实在“正常工作,但并非按预期”?
答案 1 :(得分:0)
我自己找到了解决方案。 ->setMethod('GET')
有所作为。
$searchForm = $this->createFormBuilder($property)
->add('type', EntityType::class, [
'class' => Type::class,
'choice_label' => 'name',
'mapped' => false,
'expanded' => true,
'multiple' => true,
'label' => false,
])
->add('filter', SubmitType::class, [
'attr' => [
'class' => 'btn btn-outline-dark btn-rounded waves-effect'
]
])
->setMethod('GET')
->getForm();