<i id='VJqCu'><tr id='VJqCu'><dt id='VJqCu'><q id='VJqCu'><span id='VJqCu'><b id='VJqCu'><form id='VJqCu'><ins id='VJqCu'></ins><ul id='VJqCu'></ul><sub id='VJqCu'></sub></form><legend id='VJqCu'></legend><bdo id='VJqCu'><pre id='VJqCu'><center id='VJqCu'></center></pre></bdo></b><th id='VJqCu'></th></span></q></dt></tr></i><div id='VJqCu'><tfoot id='VJqCu'></tfoot><dl id='VJqCu'><fieldset id='VJqCu'></fieldset></dl></div>
    <tfoot id='VJqCu'></tfoot>
  • <small id='VJqCu'></small><noframes id='VJqCu'>

        • <bdo id='VJqCu'></bdo><ul id='VJqCu'></ul>
        <legend id='VJqCu'><style id='VJqCu'><dir id='VJqCu'><q id='VJqCu'></q></dir></style></legend>

        Twig渲染函数中的Symfony2内部路由

        Symfony2 internal route in Twig render function(Twig渲染函数中的Symfony2内部路由)
        • <legend id='BpbgO'><style id='BpbgO'><dir id='BpbgO'><q id='BpbgO'></q></dir></style></legend>
        • <i id='BpbgO'><tr id='BpbgO'><dt id='BpbgO'><q id='BpbgO'><span id='BpbgO'><b id='BpbgO'><form id='BpbgO'><ins id='BpbgO'></ins><ul id='BpbgO'></ul><sub id='BpbgO'></sub></form><legend id='BpbgO'></legend><bdo id='BpbgO'><pre id='BpbgO'><center id='BpbgO'></center></pre></bdo></b><th id='BpbgO'></th></span></q></dt></tr></i><div id='BpbgO'><tfoot id='BpbgO'></tfoot><dl id='BpbgO'><fieldset id='BpbgO'></fieldset></dl></div>

              <small id='BpbgO'></small><noframes id='BpbgO'>

                <tbody id='BpbgO'></tbody>

              <tfoot id='BpbgO'></tfoot>

                • <bdo id='BpbgO'></bdo><ul id='BpbgO'></ul>
                  本文介绍了Twig渲染函数中的Symfony2内部路由的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我的layout.html.twig:

                  {{ render(controller('AcmeDemoBundle:Page:mainmenu')) }}
                  

                  Page 控制器从 Doctrine 中检索所有页面,并使用一组页面呈现 mainmenu.html.twig.

                  The Page controller retrieves all pages from the Doctrine and renders mainmenu.html.twig with a set of pages.

                  我的mainmenu.html.twig:

                  {% if menu_pages is defined %}
                      {% for page in menu_pages %}
                          <li class="{% if app.request.attributes.get('_internal') == '_page_show' and app.request.get('id') == page.id %}active{% endif %}"><a href="{{ path('_page_show', {id: page.id}) }}">{{ page.title|e }}</a></li>
                      {% endfor %}
                  {% endif %}
                  

                  但是没有显示 active 类.据我了解,问题出在内部路由上.如何解决?

                  But no active class is displayed. As far as I understand the problem is in internal routing. How to fix that?

                  推荐答案

                  最好不要使用 {{ render(controller('AcmeDemoBundle:Page:mainmenu')) }}.当您改用服务时,它的工作速度会更快、更舒适.您可以创建一个服务,该服务将在包含它们的任何页面上显示菜单.在服务中,您可以轻松访问当前 _route 以添加 active 类.

                  Better do not use {{ render(controller('AcmeDemoBundle:Page:mainmenu')) }}. It work more fast and comfortable when you use services instead. You can create a service which will show menu on any page where you include them. And in service you can easy get access to current _route for add active class.

                  但是如果你真的需要使用{{render(controller('AcmeDemoBundle:Page:mainmenu'))}},那么你需要向他们传递一个当前的请求,比如:

                  But if you really need to use {{ render(controller('AcmeDemoBundle:Page:mainmenu')) }}, so you need pass to them a current request like:

                  {{ render(controller('AcmeDemoBundle:Page:mainmenu', {'request': app.request})) }}
                  

                  然后在行动中将请求传递给树枝:

                  and then in action pass request to twig:

                  public function mainmenuAction($request) {
                  
                      return $this->render('AcmeDemoBundle:Page:mainmenu.html.twig', array('request' => $request));
                  }
                  

                  并在树枝中使用此请求:

                  and in twig use this request:

                  {% if menu_pages is defined %}
                      {% for page in menu_pages %}
                          <li class="{% if request.get('_route') == '_page_show' and request.get('id') == page.id %}active{% endif %}"><a href="{{ path('_page_show', {id: page.id}) }}">{{ page.title|e }}</a></li>
                      {% endfor %}
                  {% endif %}
                  

                  这篇关于Twig渲染函数中的Symfony2内部路由的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  DeepL的翻译效果还是很强大的,如果我们要用php实现DeepL翻译调用,该怎么办呢?以下是代码示例,希望能够帮到需要的朋友。 在这里需要注意,这个DeepL的账户和api申请比较难,不支持中国大陆申请,需要拥有香港或者海外信用卡才行,没账号的话,目前某宝可以
                  PHP通过phpspreadsheet导入Excel日期,导入系统后,全部变为了4开头的几位数字,这是为什么呢?原因很简单,将Excel的时间设置问文本,我们就能看到该日期本来的数值,上图对应的数值为: 要怎么解决呢?进行数据转换就行,这里可以封装方法,或者用第三方的
                  mediatemple - can#39;t send email using codeigniter(mediatemple - 无法使用 codeigniter 发送电子邮件)
                  Laravel Gmail Configuration Error(Laravel Gmail 配置错误)
                  Problem with using PHPMailer for SMTP(将 PHPMailer 用于 SMTP 的问题)
                  Issue on how to setup SMTP using PHPMailer in GoDaddy server(关于如何在 GoDaddy 服务器中使用 PHPMailer 设置 SMTP 的问题)
                    <tbody id='BzStI'></tbody>
                • <legend id='BzStI'><style id='BzStI'><dir id='BzStI'><q id='BzStI'></q></dir></style></legend>

                      <small id='BzStI'></small><noframes id='BzStI'>

                      1. <i id='BzStI'><tr id='BzStI'><dt id='BzStI'><q id='BzStI'><span id='BzStI'><b id='BzStI'><form id='BzStI'><ins id='BzStI'></ins><ul id='BzStI'></ul><sub id='BzStI'></sub></form><legend id='BzStI'></legend><bdo id='BzStI'><pre id='BzStI'><center id='BzStI'></center></pre></bdo></b><th id='BzStI'></th></span></q></dt></tr></i><div id='BzStI'><tfoot id='BzStI'></tfoot><dl id='BzStI'><fieldset id='BzStI'></fieldset></dl></div>
                          • <bdo id='BzStI'></bdo><ul id='BzStI'></ul>

                          • <tfoot id='BzStI'></tfoot>