Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个页面。网址页面是:
mydomain/web/app_dev.php/Common/homePage
我需要创建一个链接。锚的href必须链接到
mydomain/web/app_dev.php/Menus/seleccionarMenu
第二个链接的动作在其他控制器中,在其他捆绑包中。这个怎么做?。
有任何想法吗 ?
使用path():
path()
<a href="{{ path( routeName ) }}">Some Text</a>
routeName遵循基本的 Symfony 命名约定,或者如果在路由注释中给出明确的名称。
routeName