在这个 Symfony 路线中
/**
* @Route("/board/{board}/card/{card}", name="card_show", methods={"GET"}, options={})
*/
public function show(Board $board, Card $card): Response
{
$card->getLane()->getBoard(); // Board instance
// ...
}
{board}
既然参数已经在 中可用,如何以编程方式添加参数{card}
?现在,在生成显示操作的链接时,我总是需要添加两个参数。
经过一番研究,我发现 RoutingAutoBundle ( https://symfony.com/doc/master/cmf/bundles/routing_auto/introduction.html#usage ) 可以提供我需要的功能,但它不再适用于 Symfony 5 。
谢谢。
蝴蝶刀刀