Twig 链接到当前路线但更改区域设置路线、区域、链接、Twig

由网友(你干嘛凶宝宝)分享简介:我会在现有网站中添加一些指向不同语言环境版本的链接.它工作得很好,但它很丑^^I would add some links to differents locales versions in my existing website. It works quite well but it is pretty ugly^...

我会在现有网站中添加一些指向不同语言环境版本的链接.它工作得很好,但它很丑^^

I would add some links to differents locales versions in my existing website. It works quite well but it is pretty ugly^^

<li>
    <a href="{{ path(app.request.attributes.get('_route'), app.request.attributes.get('_route_params')|merge(app.request.query.all|merge({_locale: 'es'}))) }}">
       <img src="{{ asset('img/flags/es.jpg') }}" alt="es">
    </a>
</li>
<li>
    <a href="{{ path(app.request.attributes.get('_route'), app.request.attributes.get('_route_params')|merge(app.request.query.all|merge({_locale: 'fr'}))) }}">
       <img src="{{ asset('img/flags/fr.jpg') }}" alt="fr">
    </a>
</li>

你有更好的想法吗?

推荐答案

您可能在许多页面和/或多个项目中都需要这个.根据我在某些方面使用的方法,这是一种可能的方法:

You may need this in many pages and/or more than one project. Here's a possible way based on what I've been using in some:

# app/config/config.yml

# ...
parameters:
    # ...
    app_locales: [en, es, fr]

twig:
    # ...
    globals:
        locales: %app_locales%
        # ...

然后是一个拿着旗帜的模板:

Then a template for holding flags:

{# app/Resources/views/includes/_flags.html.twig #}

{% set route = app.request.attributes.get('_route') %}
{% set route_params = app.request.attributes.get('_route_params') %}
{% set params = route_params|merge(app.request.query.all) %}

{# You may want to not print a flag/link for current view, the "if" here let you handle it #}

{% for locale in locales if locale != app.request.locale %}

    <li>
        <a href="{{ path(route, params|merge({ _locale: locale })) }}">
            <img src="{{ asset('img/flags/' ~ locale ~ '.jpg') }}" alt="{{ locale }}">
        </a>
    </li>

{% endfor %}

最后在任何视图中包含标志:

Finally include flags in any view:

{# app/Resources/views/base.html.twig #}

{% include 'includes/_flags.html.twig' %}
阅读全文

相关推荐

最新文章