使用Symfony Twig Bridge集成Symfony Routing和Twig

时间:2016-07-13 15:12:21

标签: symfony twig yaml twig-extension

我在我的代码Twig和Symfony路由中使用,我想使用Symfony Twig Bridge与Twig集成。

我已经安装了它们,我需要做的是添加到Twig扩展Symfony \ Bridge \ Twig \ Extension \ RoutingExtension,它需要Symfony \ Component \ Routing \ Generator \ UrlGenerator。

UrlGenerator需要2个参数:

  • 路线集合
  • 请求上下文

所以在我的yaml服务文件中我有:

    router:
    class: Symfony\Component\Routing\Router
    arguments:
        - '@yaml.file.loader'
        - '%routing.file%'
        - { 'cache_dir' : '%cache.dir%' }
        - '@request.context'
    twig:
    class: Twig_Environment
    calls:
        - ['addExtension', ['@twig.extensions.debug']]
        - ['addExtension', ['@twig.extensions.translate']]
        - ['addExtension', ['@twig.extensions.routing']]
    arguments:
        - '@twig.loader'
        - '%twig.options%'
    twig.extensions.routing:
    class: Symfony\Bridge\Twig\Extension\RoutingExtension
    public: false
    arguments:
        - '@twig.url.generator'

最后是UrlGenerator:

    twig.url.generator:
    class: Symfony\Component\Routing\Generator\UrlGenerator
    public: false
    arguments:
        - '@router'
        - '@request.context'

不幸的是@router不是路由收集类型。它有方法getRouteCollection,它允许获取UrlGenerator所需的数据,如果我手动添加扩展,它也可以工作。来自控制器。但我不想在不同文件之间拆分服务定义,而是希望将它们保留在yaml服务定义中。

所以问题是:如何作为参数传递给UrlGenerator而不是原始对象路由器但是getRouteCollection的结果?

1 个答案:

答案 0 :(得分:1)

有多种方法可以做到这一点:

使用Symfony表达式语言

如果安装了Symfony Expression Language组件,则可以在服务定义中执行此操作:

twig.url.generator:
    class: Symfony\Component\Routing\Generator\UrlGenerator
    public: false
    arguments:
        - "@=service('router').getRouteCollection()"
        - "@request.context"

使用工厂

如果由于某种原因您不想使用Symfony Expression Language,您可以使用负责实例化您的网址生成器的工厂类来完成。

class UrlGeneratorFactory
{
    private $router;

    private $requestContext;

    public function __construct($router, $requestContext)
    {
        $this->router = $router;
        $this->requestContext = $requestContext;
    }

    public function create()
    {
        return new UrlGenerator($this->router->getRouteCollection(), $this->requestContext);
    }
}

并在 yaml 中将网址生成器定义设置为:

twig.url.generator.factory:
    class: UrlGeneratorFactory
    arguments: ["@router", "@request.context"]

twig.url.generator:
    class:   Symfony\Component\Routing\Generator\UrlGenerator
    factory: ["@twig.url.generator.factory", create]