如何在控制器中捕获异常并在Symfony 2中显示flash消息?
try{
$em = $this->getDoctrine()->getManager();
$em->persist($entity);
$em->flush();
return $this->redirect($this->generateUrl('target page'));
} catch(\Exception $e){
// What to do in this part???
}
return $this->render('MyTestBundle:Article:new.html.twig', array(
'entity' => $entity,
'form' => $form->createView(),
));
我应该在catch
区块做什么?
答案 0 :(得分:15)
您应该注意可能引发的异常:
public function postAction(Request $request)
{
// ...
try{
$em = $this->getDoctrine()->getManager();
$em->persist($entity);
$em->flush();
return $this->redirect($this->generateUrl('target page'));
} catch(\Doctrine\ORM\ORMException $e){
// flash msg
$this->get('session')->getFlashBag()->add('error', 'Your custom message');
// or some shortcut that need to be implemented
// $this->addFlash('error', 'Custom message');
// error logging - need customization
$this->get('logger')->error($e->getMessage());
//$this->get('logger')->error($e->getTraceAsString());
// or some shortcut that need to be implemented
// $this->logError($e);
// some redirection e. g. to referer
return $this->redirect($request->headers->get('referer'));
} catch(\Exception $e){
// other exceptions
// flash
// logger
// redirection
}
return $this->render('MyTestBundle:Article:new.html.twig', array(
'entity' => $entity,
'form' => $form->createView(),
));
}
答案 1 :(得分:3)
仔细阅读此内容,此处清楚地描述了捕获异常并在树枝中生成输出。 :)
http://symfony.com/doc/current/book/controller.html
进一步,
你可以使用这个原始方法来获取类的方法:
print_r(get_class_methods($e))
或者这可以打印你的对象
\Doctrine\Common\Util\Debug::dump($e);