简体   繁体   中英

RenderView in Symfony Helper usage

How can I use $this->renderView inside a Symfony helper class (not inside a controller)? I'm new about the function renderView but what do I have to setup to use it within the Helper class?

You can inject twig as a service with autowiring

<?php

namespace App\My\Ns;

use Twig\Environment;

class Helper
{
    public function __construct(
        protected Environment $environment
    ) {
    }

    public function method()
    {
        $html = $this->environment->render('my/template.html.twig', [/*  vars */]);
    }
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM