-2
このコードは私の最初のページをロードします。symfonyの:私のコントローラから小枝から他のページへのリンク
/**
* @Route("/main")
*/
public function indexAction()
{
$templating = $this->container->get('templating');
$html = $templating->render('base.html.twig');
return new Response($html);
}
私はmy base.html.twig
でリンクしている:リンクを押すと、私が
<a href="{{ path('options') }}">My options</a>
をしたいです私の@Route("/options")
を使用し、私のオプションのページに行ってください。質問は正しく行う方法ですか?ありがとう。
/**
* @Route("/options")
*/
public function showAction(){
return new Response("This will be options page:");
}
:
今ルートの名前を使用しますSensioFrameworkExtraBundle/annotations/routing.html#route-nameを使用するか、パス機能でデフォルトを使用します – Cerad