我有一个newAction,在保存产品后,我不会在搜索页面中返回。提交后保存但我返回搜索页面,但URL仍然来自newAction
if($newForm->isSubmitted()&& $newForm->isValid()){
if($newForm->get('submit')->isClicked()) {
//Here comes CODE
$this->get('session')->getFlashBag()->add(
'saccess',
'Product saved successfully'
);
return $this->redirectToRoute("product_seach");
}
}
我该怎么办?
答案 0 :(得分:0)
我猜错了product_seach
而不是product_search
。
你的SF版本是什么? 2.what.what?
在您的控制台中,尝试php app/console debug:router | grep product_search
并告诉我们是否可以找到您的路线。