我正在为 Symfony 2 开发一个导航系统。到目前为止它运行得非常好。到目前为止,有一个像这样的配置文件:
# The menu name ...
primary:
# An item in the menu ...
Home:
enabled: 1
# Routes where the menu item should be shown as 'active' ...
routes:
- "a_route_name"
# Where the link goes to ... the problem ...
target: "a_route_name"
这个布局很好用,菜单也很好用。除了在我的模板中,我只能使用与应用程序中的路由对应的目标值生成链接;即,不是外部 URL。
生成导航的模板如下:
{# This is what puts the data for the menu into the page currently ... #}
{% set primary_nav = menu_data('primary') %}
<nav role="navigation" class="primary-nav">
<ul class="clearfix">
{% for key, item in primary_nav if item.enabled is defined and item.enabled %}
{% if item.routes is defined and app.request.attributes.get('_route') in item.routes %}
<li class="active">
{% else %}
<li>
{% endif %}
{% if item.target is defined %}
<a href="{{ path(item.target) }}">{{ key }}</a>
{% else %}
{{ key }}
{% endif %}
</li>
{% endfor %}
</ul>
</nav>
是否有一种简单的方法来允许该path()
功能,或者类似于从路由生成 URL 的方法,或者只是简单地使用给定的 URL(如果它被验证为一个 URL)?
我尽了最大的努力url()
,环顾了文档,但什么也没看到。