私はこのチュートリアルに従いました:
https://github.com/KnpLabs/KnpMenuBundle/blob/master/Resources/doc/index.md#installation
そして、次のエラーに遭遇しました:
An exception has been thrown during the rendering of a template ("Unable to generate a URL for the named route "page_show" as such route does not exist.") in /var/www/bundles/src/Acme/DemoBundle/Resources/views/Default/index.html.twig at line 4.
コントローラーに何かを渡すためにここで欠けているステップはありますか?
リンクから:
use Knp\Menu\FactoryInterface;
use Symfony\Component\DependencyInjection\ContainerAware;
class Builder extends ContainerAware
{
public function mainMenu(FactoryInterface $factory, array $options)
{
$menu = $factory->createItem('root');
$menu->addChild('Home', array('route' => 'homepage'));
$menu->addChild('About Me', array(
'route' => 'page_show',
'routeParameters' => array('id' => 42)
));
// ... add more children
return $menu;
}
}
メニューを実際にレンダリングするには、任意の Twig テンプレートの任意の場所から次を実行します。
{{ knp_menu_render('AcmeDemoBundle:Builder:mainMenu') }}