gpt4 book ai didi

exception - 测试 Twig 模板中是否存在路由 (Symfony 2)

转载 作者:行者123 更新时间:2023-12-04 05:39:46 24 4
gpt4 key购买 nike

我想从我的数据库中生成一个导航,我将我的路线名称存储为链接目标。
我的 Controller 只是从数据库中获取所有必要的导航条目并返回直接在我的 Twig 模板中使用的行。

/**
* @Route("/")
* @Template()
*/
public function myAction() {
$em = $this->getDoctrine()->getManager();
$navi = $em->getRepository('myBundle:Navigation')->findAll();
return array("navi" => $navi);
}

因此,存在导致错误 500 的路由不存在的可能性。

我需要一种方法来检查命名路由是否存在。我试着用 {% if path('routeName') is defined %} ... {% endif %} 测试它但这不起作用。

AFAIK 我的 Controller 可以捕获 Twig 异常,但我只想让 twig 忽略无效的导航条目。任何的想法?

最佳答案

您可以制作自定义 Twig 功能(查看 this 链接了解更多信息)。检查给定名称是否为有效路由的函数:

function routeExists($name)
{
// I assume that you have a link to the container in your twig extension class
$router = $this->container->get('router');
return (null === $router->getRouteCollection()->get($name)) ? false : true;
}

但我不确定以这种方式(在数据库中)处理导航是否是个好主意。也许你最好用别的东西?

关于exception - 测试 Twig 模板中是否存在路由 (Symfony 2),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17241235/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com