嗨我现在用Symfony 3开发两个应用程序,我在两者中都有同样的问题,我想用搜索(controller())将搜索表单集成到twig中,问题是重定向到结果页面给出了我这个错误
在渲染模板期间抛出了异常(“渲染时出错”http://localhost/project/web/app_dev.php/index“(状态代码为302)。”)。
这是我的控制器
class ProductController extends Controller
{
public function resultsAction($criteria){
$em=$this->getDoctrine()->getManager();
$listProducts = $em->getRepository('ProjectProductBundle:Product')->getListBy($criteria);
return $this->render('ProjectFrontBundle:Front:results.html.twig', array('listProducts'=>$listProducts));
}
public function SearchByNameAction(Request $request){
$product = new Product();
$form=$this->get('form.factory')->create(ProductType::class,$product);
if($request->isMethod('post') && $form->handleRequest($request)->isValid()){
$em=$this->getDoctrine()->getManager();
$criteria = $form["name"]->getData();
return $this->redirectToRoute('project_product_results', array('criteria'=>$criteria));
}
return $this->render('ProductFrontBundle:Front:search.html.twig',array('form'=>$form->createView()));
}
}
这是我在存储库中的功能
class ProductRepository extends \Doctrine\ORM\EntityRepository
{
public function getListBy($criteria)
{
$qb = $this->createQueryBuilder('p')
->where('p.name LIKE :criteria')
->setParameter('criteria', '%'.$criteria.'%');
return $qb->getQuery()->getResult();
}
}
这是我对树枝的看法
<div>
{% block search_body %}
{{ render(controller('ProductProductBundle:Product:SearchByName',{'request': app.request,})) }}
{% endblock %}
</div>
这是关于树枝结果页面的视图
<ul>
{% for product in listProducts %}
<li>{{ product.name }}</li>
{% endfor %}
</ul>
我需要你的帮助我该如何解决这个问题?
答案 0 :(得分:0)
你的错误就在这里。 参数中的逗号太多。通常,不需要在参数中指定Request,通过Request $ request进行原型设计允许隐式恢复请求。
<div>
{% block search_body %}
{{ render(controller('ProductProductBundle:Product:SearchByName')) }}
{% endblock %}
</div>
不要忘记将用途添加到控制器的顶部:
use Symfony\Component\HttpFoundation\Request;