在我的synfony应用程序中,我有两个控制器: 应该假定ActionController只是呈现包含表单的模板。提交表单后,我想将GET请求发送到SpreadSheetControllers的getSpreadSheet()方法。
这是ActionController:
namespace App\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\Routing\Annotation\Route;
use Symfony\Component\Form\Extension\Core\Type\SubmitType;
class ActionController extends AbstractController {
/**
* @Route("/action")
*/
public function action() {
$form = $this->createFormBuilder()
->setAction($this->generateUrl('/spreadSheet'))
->setMethod('GET')
->add('save', SubmitType::class, array('label' => 'Action'))
->getForm();
return $this->render('action.html.twig', array(
'form' => $form->createView(),
));
}
}
这是SpreadSheetController:
namespace App\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\Routing\Annotation\Route;
use Symfony\Component\HttpFoundation\Response;
class SpreadSheetController extends AbstractController {
/**
* @Route("/spreadSheet")
*/
public function getSpreadSheet() {
return new Response(
'<html><body>spreadSheet</body></html>'
);
}
}
仍然,当浏览http://localhost:8000/action时,我得到一个RouteNotFoundException: 无法为命名路由“ / spreadSheet”生成URL,因为该路由不存在。
有人知道为什么找不到路线吗?
答案 0 :(得分:0)
您必须引用路由的名称,而不是实际的网址。像这样命名您的路线:
/**
* @Route("/spreadSheet", name="spreadsheet")
*/
然后在您的ActionController中引用该名称:
->setAction($this->generateUrl('spreadsheet'))